1 ; Demonstration of how to write an entire .EXE format program by using
2 ; the `exebin.mac' macro package.
4 ; nasm -fbin binexe.asm -o binexe.exe -ipath
5 ; (where `path' is such as to allow the %include directive to find
9 ; (should print `hello, world')
14 EXE_stack
64 ; demonstrates overriding the 0x800 default
30 hello: db 'hello, world', 13, 10, '$'