Add e_win32.asm

This commit is contained in:
Blake Burgess 2018-12-08 15:25:57 -05:00
parent a83292348e
commit a121bc26fc

22
e_win32.asm Normal file
View File

@ -0,0 +1,22 @@
format PE console
entry start
include 'win32a.inc'
section '.text' code readable executable
start:
invoke printf, e
jmp start
section '.data' data readable
e db "e", 0
section '.idata' import data readable writeable
library msvcrt,'MSVCRT.DLL'
import msvcrt,\
printf,'printf'