mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
733cbb3197
Using hidden files are rather antisocial, and rather pointless in this particular context. Change .stdout and .stderr to simply stdout and stderr. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
16 lines
365 B
NASM
16 lines
365 B
NASM
;Testname=test; Arguments=-fbin -oinctest.com; Files=stdout stderr inctest.com
|
|
|
|
; 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"
|