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

@@ -10,7 +10,7 @@
;
.export pushl0, push0ax, pusheax
.import decsp4
.importzp sp, sreg
.importzp c_sp, sreg
.macpack cpu
@@ -31,19 +31,19 @@ pusheax:
jsr decsp4
ldy #3
lda sreg+1
sta (sp),y
sta (c_sp),y
dey
lda sreg
sta (sp),y
sta (c_sp),y
dey
txa
sta (sp),y
sta (c_sp),y
pla
.if (.cpu .bitand ::CPU_ISET_65SC02)
sta (sp)
sta (c_sp)
.else
dey
sta (sp),y
sta (c_sp),y
.endif
rts