1 ;Testname=unoptimized; Arguments=-O0 -fbin -obinexe.exe -i../misc/; Files=.stdout .stderr binexe.exe
2 ;Testname=optimized; Arguments=-Ox -fbin -obinexe.exe -i../misc/; Files=.stdout .stderr binexe.exe
4 ; Demonstration of how to write an entire .EXE format program by using
5 ; the `exebin.mac' macro package.
7 ; nasm -fbin binexe.asm -o binexe.exe -ipath
8 ; (where `path' is such as to allow the %include directive to find
12 ; (should print `hello, world')
17 EXE_stack
64 ; demonstrates overriding the 0x800 default
33 hello: db 'hello, world', 13, 10, '$'