在哪里可以找到有关汇编程序的文档?
我编写了一个非常短的程序,它使用 python 解析“程序”并将其转换为汇编程序,从而允许我将我的小编程语言编译为可执行文件。
您可以在此处阅读我的博客以获取更多信息 http://spiceycurry .blogspot.com/2010/05/simple-compilable-programming-language.html
我的问题是...在哪里可以找到更多内核命令,以便我可以进一步扩展上述博客中的脚本?
I wrote a very short program that parses a "program" using python and converts it to assembler, allowing me to compile my little proramming language to an executable.
You can read my blog for more information here http://spiceycurry.blogspot.com/2010/05/simple-compilable-programming-language.html
my question is... Where can I find more kernel commands so that I can further expand on my script in the above blog?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我宁愿推荐使用 LLVM:
我不太确定你所说的“内核”命令是什么意思。如果您指的是操作码:
然而,ARM 或 PowerPC 具有完全不同的操作码。
如果您指的是操作系统 syscall(系统调用),那么:
I'd rather recomment using LLVM:
I'n not quite sure what you mean by 'kernel' commands. If you mean opcodes:
However the ARM or PowerPC have totally different opcodes.
If you mean the operating systen syscalls (system calls) then: