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
completely wrong. Chebychev (Remez), Padé, and maybe Taylor.
[fmap.git]
/
x86_64_sse2_x87
/
fasm
/
examples
/
x86
/
multiseg.asm
blob
be9030d3b8ab32852be9aaeca10a8e5cf75a9b78
1
2
include
'8086.inc'
3
include
'format/mz.inc'
4
5
entry
code:
start
; program entry point
6
stack
100h
; stack size
7
8
segment
code
9
10
start:
11
mov
ax
,
data
12
mov
ds
,
ax
13
14
mov
dx
,
hello
15
call
extra:
write_text
16
17
mov
ax
,
4
C00h
18
int
21h
19
20
segment
data
21
22
hello
db
'Hello world!'
,
24h
23
24
segment
extra
25
26
write_text:
27
mov
ah
,
9
28
int
21h
29
retf