summaryrefslogtreecommitdiff
path: root/test/inctest.asm
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2002-04-30 20:52:08 +0000
committerH. Peter Anvin <hpa@zytor.com>2002-04-30 20:52:08 +0000
commitd7ed89eac9580f280fe0017b22c8e38ca75ed8e3 (patch)
tree98c4fcdd286b44e14f79aa65271e5caa1c2c7be4 /test/inctest.asm
parentea8382740dbe5e1607742d0a7c7c139dffcc5ae5 (diff)
downloadnasm-d7ed89eac9580f280fe0017b22c8e38ca75ed8e3.tar.gz
NASM 0.94nasm-0.94
Diffstat (limited to 'test/inctest.asm')
-rw-r--r--test/inctest.asm8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/inctest.asm b/test/inctest.asm
index 95ab40ff..d6d35cf3 100644
--- a/test/inctest.asm
+++ b/test/inctest.asm
@@ -5,11 +5,9 @@
; nasm -f bin inctest.asm -o inctest.com
; and when run, it should print `hello, world'.
-[BITS 16]
-[ORG 0x100]
+ BITS 16
+ ORG 0x100
jmp _main
-[INC inc1.asm]
-
-[INCLUDE inc2.asm]
+%include "inc1.asm"