repo.or.cz
/
pwnd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Init
[pwnd.git]
/
stage2
/
main.asm
blob
a6e41afbdf17b68d5b3940f964824aa17144e6c2
1
bits
16
2
org
0x0
3
4
jmp
start
5
6
Print:
7
pusha
8
mov
ah
,
0x0e
9
.
loop:
10
mov
al
,[
si
]
11
test
al
,
al
12
jz
.
end
13
int
0x10
14
inc
si
15
jmp
.
loop
16
.
end:
17
popa
18
ret
19
20
21
start:
22
push
cs
23
pop
ds
24
25
mov
si
,
load
26
call
Print
27
28
cli
29
hlt
30
31
load
db
"Stage2 loading..."
,
13
,
10
,
0
32
33