Fix off-by-one in dclock installer

This commit is contained in:
Joshua Bell 2021-09-10 08:16:49 -07:00
parent 974a7d49f0
commit 7c8c608b65
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ done: rts
lda DATETIME+1
sta ptr
clc
adc #(regulk - driver - 1)
adc #(regulk - driver)
sta regulk_addr
lda DATETIME+2
sta ptr+1