repo.or.cz
/
fmap.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
initial commit: a mess of assembly code
[fmap.git]
/
x86_64_sse2_x87
/
fasm
/
examples
/
x86
/
hello.asm
blob
7d21aee6b4b61c98fa307da7f76643ed16012be3
1
2
include
'8086.inc'
3
4
org
100h
5
6
display_text
=
9
7
8
mov
ah
,
display_text
9
mov
dx
,
hello
10
int
21h
11
12
int
20h
13
14
hello
db
'Hello world!'
,
24h