Files
china-dictatorship/hello-world/a/Assembler NASM Win32.asm
Ciro Santilli 3e40ac19d9 hello-world
2021-03-24 00:00:01 +00: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