repo.or.cz
/
nasm
/
avx512.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
NASM 0.91
[nasm/avx512.git]
/
test
/
inctest.asm
blob
95ab40ff7608a8bd5b460a02ca5a055dd3379257
1
; This file, plus inc1.asm and inc2.asm, test NASM's file inclusion
2
; mechanism.
3
;
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'.
7
8
[
BITS
16
]
9
[
ORG
0x100
]
10
11
jmp
_main
12
13
[
INC
inc1.asm
]
14
15
[
INCLUDE
inc2.asm
]