nasm/travis/test/inctest.asm
Cyrill Gorcunov 34a3e114ae test: nasm-t -- Add inctest
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
2018-11-11 21:43:46 +03:00

14 lines
285 B
NASM

; This file, plus inc1.asm and inc2.asm, test NASM's file inclusion
; mechanism.
;
; This produces a DOS .COM file: to assemble, use
; nasm -f bin inctest.asm -o inctest.com
; and when run, it should print `hello, world'.
BITS 16
ORG 0x100
jmp _main
%include "inc1.asm"