GitHub_collection_hello-world/a/Assembler NASM Win32.asm
2021-05-08 13:33:04 +12:00

11 lines
134 B
NASM

BITS 32
global _main
extern _printf
section .text
push msg
call _printf
add esp,4
ret
section .data
msg: db "Hello World",0Ah,0