我正在为学生项目寻找小型汇编翻译器。问题在于,有必要将汇编程序 (AT&T) 语法的一小部分即时翻译成机器代码(x86 和/或 x86_64)。我不想重新发明轮子,所以我将感谢任何指向现成实现的链接。优先考虑界面简单的轻量级库。
问问题
715 次
1 回答
5
Give FASM a look, although its a full assembler for x86 and x86_64, its opensource, which should easily allow you to integrate it, you can also have a look at GAS, which is also open source.
Finding an actual assembler library is gonna very difficult, as most are geared to JIT compilers, the best you'll find is asmjit.
于 2012-01-18T13:39:52.843 回答