NASM 0.91
[nasm/avx512.git] / test / inctest.asm
blob95ab40ff7608a8bd5b460a02ca5a055dd3379257
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 [INC inc1.asm]
15 [INCLUDE inc2.asm]