repo.or.cz
/
nasm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
%{_arch} doesn't work with newer RPMs; use %{_target_cpu} instead
[nasm.git]
/
test
/
inctest.asm
blob
d6d35cf311e2a6768db751cfcb115c7537926ffd
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
%
include
"inc1.asm"