This commit is contained in:
Arne Schmitz 2025-03-11 17:46:36 +01:00
parent c22a67f95f
commit 4f100266c3

View File

@ -175,7 +175,7 @@ void petplot(char cx, char cy)
{ {
/* BASIC4 80-col */ /* BASIC4 80-col */
ldx cx ldx cx
ldx cy ldy cy
stx $e2 stx $e2
sty $e0 sty $e0
jsr 0xe05f jsr 0xe05f
@ -186,7 +186,7 @@ void petplot(char cx, char cy)
{ {
/* BASIC4 40-col */ /* BASIC4 40-col */
ldx cx ldx cx
ldx cy ldy cy
stx $c6 stx $c6
sty $d8 sty $d8
jsr 0xe07f jsr 0xe07f
@ -197,7 +197,7 @@ void petplot(char cx, char cy)
{ {
/* BASIC2 */ /* BASIC2 */
ldx cx ldx cx
ldx cy ldy cy
stx $c6 stx $c6
sty $d8 sty $d8
jsr 0xe25d jsr 0xe25d
@ -208,7 +208,7 @@ void petplot(char cx, char cy)
{ {
/* BASIC1 */ /* BASIC1 */
ldx cx ldx cx
ldx cy ldy cy
stx $e2 stx $e2
sty $f5 sty $f5
jsr 0xe5db jsr 0xe5db