NASM 0.98p3.5
[nasm.git] / test / inctest.asm
blobd6d35cf311e2a6768db751cfcb115c7537926ffd
1 ; This file, plus inc1.asm and inc2.asm, test NASM's file inclusion
2 ; mechanism.
4 ; This produces a DOS .COM file: to assemble, use
5 ; nasm -f bin inctest.asm -o inctest.com
6 ; and when run, it should print `hello, world'.
8 BITS 16
9 ORG 0x100
11 jmp _main
13 %include "inc1.asm"