-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathacme-macros.asm
More file actions
489 lines (444 loc) · 7.07 KB
/
acme-macros.asm
File metadata and controls
489 lines (444 loc) · 7.07 KB
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
FALSE = $00
TRUE = $01
OFF = $00
ON = $01
COLOR_BLACK = $00
COLOR_WHITE = $01
COLOR_RED = $02
COLOR_CYAN = $03
COLOR_PURPLE = $04
COLOR_GREEN = $05
COLOR_BLUE = $06
COLOR_YELLOW = $07
COLOR_ORANGE = $08
COLOR_BROWN = $09
COLOR_PINK = $0a
COLOR_DARKGREY = $0b
COLOR_GREY = $0c
COLOR_LIGHTGREEN = $0d
COLOR_LIGHTBLUE = $0e
COLOR_LIGHTGREY = $0f
!macro BasicUpStart .line_num {
*=$0801
!byte <.next_line, >.next_line
!byte <.line_num, >.line_num
!byte $9e
!byte $30 + (.code_start / 1000)
!byte $30 + ((.code_start / 100) % 10)
!byte $30 + ((.code_start / 10) % 10)
!byte $30 + (.code_start % 10)
!byte 0
.next_line
!byte 0, 0
.code_start
}
!macro BasicUpStart .line_num, .del_count, .cr_count {
*=$0801
!byte <.next_line, >.next_line
!byte <.line_num, >.line_num
!byte $9e
!byte $30 + (.code_start / 1000)
!byte $30 + ((.code_start / 100) % 10)
!byte $30 + ((.code_start / 10) % 10)
!byte $30 + (.code_start % 10)
!byte $3a, $8f, $20
!fill .del_count, $14
!pet "(c)2019 simon/cgtr"
!fill .cr_count, $0d
!byte 0
.next_line
!byte 0, 0
.code_start
}
!macro FillBlock .target, .data {
ldx #$00
lda #.data
-
sta .target + $0000, x
sta .target + $0100, x
sta .target + $0200, x
sta .target + $02e8, x
inx
bne -
}
!macro FillBlock .target, .addr, .count {
ldx #$00
lda .addr
-
sta .target, x
inx
cpx #.count
bne -
}
!macro FillBlock .target, .data, .count, .repeat {
ldx #$00
lda #.data
-
!for i, 0, (.repeat - 1) {
sta .target + .count * i, x
}
inx
cpx #.count
bne -
}
!macro CopyBlock .target, .source, .count, .repeat {
ldx #$00
-
!for i, 0, (.repeat - 1) {
lda .source + .count * i, x
sta .target + .count * i, x
}
inx
cpx #.count
bne -
}
!macro CopyBlock .target, .source, .count {
+CopyBlock .target, .source, .count, 1
}
!macro PrintText .target, .source, .source_end {
ldx #$00
-
lda .source, x
sta .target, x
inx
cpx #.source_end - .source
bne -
}
!macro PrintText_1x2 .target, .source, .source_end {
ldx #$00
-
lda .source, x
sta .target, x
ora #$40
sta .target + 40, x
inx
cpx #.source_end - .source
bne -
}
!macro PrepareScroll_1x1 .message, .selfmod {
lda #<.message
sta .selfmod + 1
lda #>.message
sta .selfmod + 2
}
!macro ScrollText_1x1 .message, .start, .speed, .temp {
lda .temp
sec
sbc #.speed
and #$07
sta .temp
bcs ++
ldx #$00
-
lda .start + 1, x
sta .start, x
inx
cpx #$28
bne -
read1x1
lda .start + 39
cmp #$00
bne +
lda #<.message
sta read1x1 + 1
lda #>.message
sta read1x1 + 2
jmp read1x1
+
sta .start + 39
inc read1x1 + 1
lda read1x1 + 1
cmp #$00
bne ++
inc read1x1 + 2
++
}
!macro PrepareScroll_1x2 .message, .selfmod {
lda #<.message
sta .selfmod + 1
lda #>.message
sta .selfmod + 2
}
!macro ScrollText_1x2 .message, .start, .speed, .temp {
lda .temp
sec
sbc #.speed
and #$07
sta .temp
bcs ++
ldx #$00
-
lda .start + 1, x
sta .start, x
lda .start + 41, x
sta .start + 40, x
inx
cpx #$28
bne -
read1x2
lda .start + 39
cmp #$00
bne +
lda #<.message
sta read1x2 + 1
lda #>.message
sta read1x2 + 2
jmp read1x2
+
sta .start + 39
ora #$40
sta .start + 79
inc read1x2 + 1
lda read1x2 + 1
cmp #$00
bne ++
inc read1x2 + 2
++
}
!macro RotateLeft .source, .source_end {
lda .source
sta .source_end
ldx #$00
-
lda .source + 1, x
sta .source, x
inx
cpx #.source_end - .source
bne -
}
!macro WashLeft .target, .source, .source_end, .repeat, .mod {
lda .source
sta .source_end
ldx #$00
-
lda .source + 1, x
sta .source, x
!for i, 0, (.repeat - 1) {
sta .target + 40 * i * .mod, x
}
inx
cpx #.source_end - .source
bne -
}
!macro WashLeft .target, .source, .source_end {
+WashLeft .target, .source, .source_end, 1, 1
}
!macro RotateRight .source, .source_end {
ldx #.source_end - .source
-
lda .source - 1, x
sta .source, x
dex
bne -
lda .source_end
sta .source
}
!macro WashRight .target, .source, .source_end, .repeat, .mod {
ldx #.source_end - .source
-
lda .source - 1, x
sta .source, x
!for i, 0, (.repeat - 1) {
sta .target + 40 * i * .mod, x
}
dex
bne -
lda .source_end
sta .source
}
!macro WashRight .target, .source, .source_end {
+WashRight .target, .source, .source_end, 1, 1
}
!macro Wait .delay {
!if (.delay > $ff) {
ldx #(.delay >> $ff)
--
ldy #(.delay & $ff)
-
dey
bne -
dex
bne --
} else {
ldy #.delay
-
dey
bne -
}
}
!macro SetColors .color {
lda #.color
sta $d020
sta $d021
}
!macro SetColors .border, .backgnd {
lda #.border
sta $d020
lda #.backgnd
sta $d021
}
!macro PrepareMusic .address, .songnum {
lda #.songnum
jsr .address
}
!macro PlayMusic .address {
jsr .address
}
!macro SelectVICBank .bank {
lda $dd00
and #$fc
ora #(3 - (.bank % 4))
sta $dd00
}
!macro SelectVICMemory .screen_addr, .char_addr {
lda #((((.screen_addr & $3fff) / $400) << 4) | (((.char_addr & $3fff) / $800) << 1))
sta $d018
}
!macro CBMFontUpperGfx {
+SelectVICMemory $0400, $1000
}
!macro CBMFontLowerUpper {
+SelectVICMemory $0400, $1800
}
!macro WaitSpace {
-
lda $dc01
cmp #$ef
bne -
}
!macro JumpOnSpace .address {
lda $dc01
cmp #$ef
bne +
jmp .address
+
}
!macro WaitSpaceOrFire {
-
lda $dc01
lsr
lsr
lsr
lsr
lsr
bcs -
}
!macro JumpOnSpaceOrFire .address {
lda $dc01
lsr
lsr
lsr
lsr
lsr
bcs +
jmp .address
+
}
!macro RunStopRestore .enable {
!if (.enable) {
lda #$ed
sta $0328
} else {
lda #$ea
sta $0328
}
}
!macro ShiftCommodore .enable {
!if (.enable) {
lda #$00
sta $0291
} else {
lda #$80
sta $0291
}
}
!macro MemoryConfig .value {
lda #.value
sta $01
}
!macro KernalAndBasic .enable {
!if (.enable) {
+MemoryConfig $37
} else {
+MemoryConfig $35
}
}
!macro BackupRegisters {
pha
txa
pha
tya
pha
}
!macro RestoreRegisters {
pla
tay
pla
tax
pla
}
!macro SetVector .address, .vector {
lda #<.address
sta .vector
lda #>.address
sta .vector + 1
}
!macro SetRaster .raster , .irqaddr {
lda #(.raster & $ff)
sta $d012
lda $d011
!if (.raster > $ff) {
ora #$80
} else {
and #$7f
}
sta $d011
+SetVector .irqaddr, $0314
}
!macro SetRaster .raster , .irqaddr, .brkaddr {
lda #(.raster & $ff)
sta $d012
lda $d011
!if (.raster > $ff) {
ora #$80
} else {
and #$7f
}
sta $d011
+SetVector .irqaddr, $fffe
+SetVector .brkaddr, $fffa
}
!macro EnableRasters .raster, .irqaddr {
sei
lda #$7f
sta $dc0d
sta $dd0d
bit $dc0d
bit $dd0d
lda #$01
sta $d019
sta $d01a
+SetRaster .raster, .irqaddr
cli
}
!macro EnableRasters .raster, .irqaddr, .brkaddr {
sei
lda #$7f
sta $dc0d
sta $dd0d
bit $dc0d
bit $dd0d
lda #$01
sta $d019
sta $d01a
+SetRaster .raster, .irqaddr, .brkaddr
cli
}
!macro DisableRasters {
sei
lda #$81
sta $dc0d
sta $dd0d
+SetVector $fffe, $0314
cli
}