Add e_win64.asm

This commit is contained in:
Blake Burgess 2018-12-08 15:30:40 -05:00
parent a121bc26fc
commit b3e9e4459d

25
e_win64.asm Normal file
View File

@ -0,0 +1,25 @@
format PE64 console
entry start
include 'win64a.inc'
section '.text' code readable executable
start:
and rsp, -16
putE:
invoke printf, e
jmp putE
section '.data' data readable
e db "e", 0
section '.idata' import data readable writeable
library msvcrt,'MSVCRT.DLL'
import msvcrt,\
printf,'printf'