1
0

26 lines
322 B
NASM
Raw Normal View History

2019-06-15 15:31:01 -06:00
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'