blob: 25a162a6ed803f2f772b07f2bdb84b6e56197db2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
;
; DZ80 V3.4.1 Z80 Disassembly of build/test.bin
; 2017/09/26 09:42
;
org 0x0
;
X0000: halt
;
jr X0000
;
X0003: ld c,0x0
X0005: ld b,c
inc c
ld hl,X8200
ld (hl),b
jr X0005
;
rst 0x38
;
org 0x10
;
reti
;
rst 0x38
;
org 0x18
;
reti
;
rst 0x38
;
org 0x20
;
reti
;
rst 0x38
;
org 0x28
;
reti
;
rst 0x38
;
org 0x30
;
reti
;
rst 0x38
;
org 0x38
;
reti
;
rst 0x38
;
org 0x100
;
ld sp,Xffff
call X0003
jp X0000
;
; Miscellaneous equates
;
; These are addresses referenced in the code but
; which are in the middle of a multibyte instruction
; or are addresses outside the initialized space
;
X8200 equ 0x8200
Xffff equ 0xffff
;
end
;
|