summaryrefslogtreecommitdiff
path: root/test/inctest.asm
diff options
context:
space:
mode:
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"