Merge pull request #439 from TravorLZH/master

Adding NASM Helloworld for Windows
This commit is contained in:
Mike Donaghy
2017-12-15 03:37:31 -06:00
committed by GitHub

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