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

@@ -5,14 +5,14 @@
;
.export enter
.importzp sp
.importzp c_sp
enter: tya ; get arg size
ldy sp
ldy c_sp
bne L1
dec sp+1
L1: dec sp
dec c_sp+1
L1: dec c_sp
ldy #0
sta (sp),y ; Store the arg count
sta (c_sp),y ; Store the arg count
rts