diff --git a/e_win32.asm b/e_win32.asm new file mode 100644 index 0000000..f80dcb8 --- /dev/null +++ b/e_win32.asm @@ -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'