-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclock.asm
249 lines (208 loc) · 3.25 KB
/
clock.asm
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
.include "header.inc"
.include "misc_macros.inc"
.include "zeropage.inc"
.include "bg1.inc"
.define CLOCK_DRAWTO 64*7+44
.bank 0 slot 1
.ramsection "clock_vars" SLOT RAM_SLOT
clk_tick: db
clk_seconds1: db
clk_seconds10: db
clk_minutes1: db
clk_minutes10: db
clk_hours1: db
clk_hours10: db
clk_hours100: db
clk_visible: db
clk_running: db
.ends
.16BIT
.section "clock code" FREE
; syntax: INC_DIGIT mem max_value
.macro INC_DIGIT
lda \1
inc A
sta \1
cmp #\2
bne @done
stz \1
.endm
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Erase the clock and stop drawing it (not drawn even when clock_draw is called)
;
clock_hide:
pushall
A8
XY16
stz clk_visible
ldy #8
ldx #CLOCK_DRAWTO
@lp:
sta BG1_ABSOLUTE_LONG, X
inx
inx
dey
bne @lp
popall
rts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Make the clock visible (will be drawing when clock_draw is called)
;
clock_show:
pha
php
A8
lda #1
sta clk_visible
plp
pla
rts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Start/resume clock. Time will advance when clock_tick is called.
;
clock_start:
pha
php
A8
lda #1
sta clk_running
plp
pla
rts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Start/resume clock. Time will advance when clock_tick is called.
;
clock_stop:
pha
php
A8
stz clk_running
plp
pla
rts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Check if clock is running. Returns with CF set if running
;
clock_isStopped:
pha
php
A8
lda clk_running
bne @running
@not_running:
plp
pla
clc
rts
@running:
plp
pla
sec
rts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Reset time to zero
;
clock_zero:
php
A8
stz clk_tick
stz clk_seconds1
stz clk_seconds10
stz clk_minutes1
stz clk_minutes10
stz clk_hours1
stz clk_hours10
stz clk_hours100
plp
rts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
;
;
clock_tick:
pha
php
A8
lda clk_running
beq @done
lda clk_tick
inc A
sta clk_tick
cmp #60
bne @done
stz clk_tick
INC_DIGIT clk_seconds1 10
INC_DIGIT clk_seconds10 6
INC_DIGIT clk_minutes1 10
INC_DIGIT clk_minutes10 6
INC_DIGIT clk_hours1 10
INC_DIGIT clk_hours10 10
INC_DIGIT clk_hours100 10
@done:
plp
pla
rts
.macro DRAW_DIGIT
lda \1
ora #$30
sta BG1_ABSOLUTE_LONG, X
inx
inx
.endm
.macro DRAW_CHAR
lda #\1
sta BG1_ABSOLUTE_LONG, X
inx
inx
.endm
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Draw the clock in BG1
;
clock_draw:
pushall
XY16
A8
lda clk_visible
beq @done
ldx #CLOCK_DRAWTO
; DRAW_DIGIT clk_hours100
DRAW_DIGIT clk_hours10
DRAW_DIGIT clk_hours1
DRAW_CHAR ':'
DRAW_DIGIT clk_minutes10
DRAW_DIGIT clk_minutes1
DRAW_CHAR ':'
DRAW_DIGIT clk_seconds10
DRAW_DIGIT clk_seconds1
lda #1
sta bg1_need_resync
@done:
popall
rts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Init the clock. Defauls to stopped, invisible.
;
clock_initreset:
pushall
A8
stz clk_tick
stz clk_seconds1
stz clk_seconds10
stz clk_minutes1
stz clk_minutes10
stz clk_hours1
stz clk_hours10
stz clk_hours100
stz clk_visible
stz clk_running
popall
rts
.ends