remove a bunch of TABs

This commit is contained in:
mrdudz
2022-04-16 18:16:14 +02:00
parent 3dd9ed0414
commit 2eb20b3e8a
10 changed files with 182 additions and 182 deletions

View File

@@ -9,12 +9,12 @@
.constructor init_clock
.import sreg: zp
.import _zonecounter
.import _zonecounter
.include "atari7800.inc"
.macpack generic
.code
.code
;-----------------------------------------------------------------------------
; Read the clock counter.
@@ -38,9 +38,9 @@
; _zonecounter == 1 (from 1st visible scanline to last visible scanline)
;
update_clock:
lda _zonecounter
and #01
beq @L1
lda _zonecounter
and #01
beq @L1
inc clock_count
bne @L1
inc clock_count+1
@@ -54,10 +54,10 @@ update_clock:
;
.segment "ONCE"
init_clock:
lda #0
sta clock_count+2
sta clock_count+1
sta clock_count
lda #0
sta clock_count+2
sta clock_count+1
sta clock_count
rts
;-----------------------------------------------------------------------------