1 ; Demonstration of how to write an entire .EXE format program as a .OBJ
2 ; file to be linked. Tested with the VAL free linker.
4 ; nasm -fobj objexe.asm
5 ; val objexe.obj,objexe.exe;
8 ; (should print `hello, world')
26 hello: db 'hello, world', 13, 10, '$'