Rename assembler_nasm_win32.asm to a/assembler_nasm_win32.asm

This commit is contained in:
Travor Liu
2017-12-01 20:04:58 -05:00
committed by GitHub
parent 72e006fdf2
commit d1c695ffa6

View File

@@ -0,0 +1,10 @@
BITS 32
global _main
extern _printf
section .text
push msg
call _printf
add esp,4
ret
section .data
msg: db "Hello world",0Ah,0