summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2020-11-17 20:06:40 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2020-11-17 20:06:40 +0100
commit13072ecc24de933c0688177e08406aa037af2f36 (patch)
tree33797b1b2761210443a0aeb1b92e5987b424dd2c
parentced1681a4457c6068b9c73b0a9f5acdc27df5c07 (diff)
download6502-13072ecc24de933c0688177e08406aa037af2f36.tar.gz
6502-13072ecc24de933c0688177e08406aa037af2f36.tar.bz2
now the RAM works with 7-segment variables on $0 and $1
-rw-r--r--roms/7seg_counter_irq_timer.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/roms/7seg_counter_irq_timer.asm b/roms/7seg_counter_irq_timer.asm
index 29a3b54..8326762 100644
--- a/roms/7seg_counter_irq_timer.asm
+++ b/roms/7seg_counter_irq_timer.asm
@@ -14,7 +14,7 @@ SRCLK = %00000100
INTERVAL = 33 ; increase counter 3 times per scond
COUNTER = $0 ; visible counter
-TICKS = $3 ; internal ticks counter (on overflow increment counter)
+TICKS = $1 ; internal ticks counter (on overflow increment counter)
.org #$f800