欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

如何在windows下运行nasm

程序员文章站 2024-02-02 22:55:04
...

reference:https://www.wikihow.com/Run-NASM-on-Windows

 

1.首先下载并安装nasm

下载地址:NASM

 

2.将nasm.exe所在的根目录加到环境变量的PATH下

如何在windows下运行nasm

3.创建文件hello.asm并在文件中加入如下代码

    global _main
    extern _printf
    section .text
_main:
    push message
    call _printf    ;调用C的printf
    add esp,4
    ret
message:
    db  'hello,world',10,0

4.进入cmd将hello.asm汇编成中间文件

nasm -f win32 hello.asm

5.将hello.obj转化为windows下的可执行文件

gcc hello.obj -o hello

如何在windows下运行nasm

相关标签: nasm