1
0

23 lines
297 B
NASM
Raw Permalink Normal View History

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