forked from bboxy/bitfire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlink_macros_dasm.inc
126 lines (109 loc) · 1.71 KB
/
link_macros_dasm.inc
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
ifnconst link_dasm_inc
link_dasm_inc = 1
mac link_load_next_raw_jmp
lda #>({1}-1)
pha
lda #<({1}-1)
pha
jmp link_load_next_raw
endm
mac link_load_next_comp_jmp
lda #>({1}-1)
pha
lda #<({1}-1)
pha
jmp link_load_next_comp
endm
mac link_decomp_jmp
lda #>({1}-1)
pha
lda #<({1}-1)
pha
jmp link_decomp
endm
mac link_load_next_double_jmp
lda #>({1}-1)
pha
lda #<({1}-1)
pha
jmp link_load_next_double
endm
mac link_load_next_raw_decomp_jmp
lda #>({1}-1)
pha
lda #<({1}-1)
pha
jmp link_load_next_raw_decomp
endm
mac link_player_irq
sei
lda #<link_player
sta $fffe
lda #>link_player
sta $ffff
lda #$ff
sta $d012
cli
endm
mac request_disk
lda #{1} + $f0
jsr bitfire_send_byte_
lda #$3f
sta $dd02
endm
mac wait_syncpoint
.sau
lda link_syncpoint
cmp #{1}
bcc .sau
endm
mac wait_frame_count
.sau lda link_frame_count+1
cmp #>{1}
bcc .sau
.sau2
lda link_frame_count+0
cmp #<{1}
bcc .sau2
endm
endif
mac bus_lock
lda #$c7
sta $dd02
endm
mac bus_unlock
lda #({1} & 3) | $c0
sta $dd00
lda #$3f
sta $dd02
endm
mac start_music_nmi
ldx #<link_player
lda #>link_player
stx $fffa
sta $fffb
lda #$00
sta $dd0e
lda $dd0d
lda #$c7
sta $dd04
lda #$4c
sta $dd05
lda #$81
sta $dd0d
lda #$ff
cmp $d012
bne *-3
lda #$11
sta $dd0e
endm
mac stop_music_nmi
lda #$7f
sta $dd0d
lda $dd0d
endm
mac restart_music_nmi
lda $dd0d
lda #$81
sta $dd0d
endm