在 Windows XP 上执行汇编代码?
我正在运行 WINXP,并且我很好奇如何运行或执行汇编代码。是否有我需要的某种应用程序,或者我需要从终端运行它......?
I'm running a WINXP, and I'm quite curious as to how you run or execute assembly code. Is there some sort of application I need, or do I need to run it from a terminal...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您想要使用 MASM 或 NASM:
http://en.wikipedia.org/wiki/Microsoft_Macro_Assembler
You want to use MASM or NASM:
http://en.wikipedia.org/wiki/Microsoft_Macro_Assembler
我使用过 tasm32 和 masm32 嗯.. Masm32 有一个很好的 GUI,所以广告推荐。两者都有调试器。 masm32forum 也是一个很好的游乐场......
I have used tasm32 and masm32 well.. Masm32 has a good gui so ad recommend that. Both also have debuggers. masm32forum is a good playground also...
您不运行或执行汇编代码。在执行之前,需要将其组装成可执行文件(因此得名)。
You don't run or execute assembly code. Before it can be executed, it needs to be assembled into an executable (hence the name).
您需要一个与您的系统架构兼容的汇编器。我使用 x86 的 TASM(涡轮汇编器)。然后,您还需要一个允许您“执行”代码的链接器。
You need an assembler that is compatible with your systems architecture. I use TASM (turbo assembler) for x86. Then you will also need a linker that will allow you to 'execute' the code.