Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[KIM-1] Use X as index for OUTCH as Y is not preserved #212

Merged
merged 1 commit into from
Jan 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/arch/kim-1/boot/boot.S
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,11 @@ readdatr:

e2: inc errorc ; 02 READ ERROR CODE
e1: inc errorc ; 01 RECALIBRATE ERROR CODE
ldy #0
1: lda errmsg, y
ldx #0
1: lda errmsg, x
beq 2f
jsr OUTCH
iny
inx
bne 1b
2: lda errorc
jsr PRTBYT
Expand Down