This commit is contained in:
mrdudz
2025-06-23 17:09:06 +02:00
parent 4863a3e29b
commit 5fc15a7a60
204 changed files with 915 additions and 912 deletions

View File

@@ -20,17 +20,17 @@
; Copy from stack to zeropage. This assumes ptr1 and ptr2 are adjacent.
ldy #3
@L1: lda (sp),y
@L1: lda (c_sp),y
sta ptr1,y
dey
bpl @L1
lda #4
clc
adc sp
sta sp
adc c_sp
sta c_sp
bcc @L2
inc sp+1
inc c_sp+1
@L2: pla ; Old rhs
jmp idiv32by16r16