单声道 ASM 一代
我想尝试用C#写一个简单的内核,比如cosmos,仅供学习。是否可以从 Mono 程序集生成 x86 或 x86-64 ASM?因为 mono --full-aot 生成一个可执行文件...
生成 ASM 后,我需要使用 NASM 对其进行编译。有什么想法吗?
I want to try write a simple kernel in C# like cosmos, just for learning. Is it possible to generate x86 or x86-64 ASM from a Mono assembly? because mono --full-aot generates an executable...
After the generation of the ASM I need to compile it with NASM. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用:
mono --aot=asmonly foo.exe
You can use:
mono --aot=asmonly foo.exe