环境
操作系统:
nasm 版本:
PS C:\Users\7891t> nasm -version
NASM version 2.16.03 compiled on Apr 17 2024
link 版本:
PS C:\Users\xxxx\Downloads\18176\1\3\2> link
Microsoft (R) Incremental Linker Version 14.29.30159.0
Copyright (C) Microsoft Corporation. All rights reserved.
Code
default rel
extern printfsection .datamsg db 'Hello, World', 0Ah, 0fmt db '%s', 0section .textglobal mainmain:sub rsp ,0x28lea rcx, [fmt]lea rdx, [msg]call printfadd rsp, 0x28ret
编译
PS C:\Users\xxxx\Downloads\18176\1\3\2> nasm -f win64 .\hello.asm -o .\hello.obj
PS C:\Users\xxxx\Downloads\18176\1\3\2> link .\hello.obj libcmt.lib
Microsoft (R) Incremental Linker Version 14.29.30159.0
Copyright (C) Microsoft Corporation. All rights reserved.PS C:\Users\xxxx\Downloads\18176\1\3\2> .\hello.exe
Hello, World