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

@@ -1,20 +1,20 @@
;
; Ullrich von Bassewitz, 31.08.1998
;
; CC65 runtime: Store ax at (sp),y
; CC65 runtime: Store ax at (c_sp),y
;
.export staxysp, stax0sp
.importzp sp
.importzp c_sp
stax0sp:
ldy #0
staxysp:
sta (sp),y
sta (c_sp),y
iny
pha
txa
sta (sp),y
sta (c_sp),y
pla
rts