1
0
mirror of https://github.com/cc65/cc65.git synced 2026-03-10 17:21:49 +00:00
Files
cc65/libsrc/runtime/regswap1.s
2025-06-22 21:34:41 +00:00

23 lines
502 B
ArmAsm

;
; Ullrich von Bassewitz, 25.11.2002
;
; CC65 runtime: Swap 1 byte of register variable space
;
.export regswap1
.importzp c_sp, regbank
.proc regswap1
lda regbank,x ; Get old value
pha ; Save it
lda (c_sp),y ; Get stack loc
sta regbank,x ; Store new value
pla
sta (c_sp),y ; Store old value
rts
.endproc