New functions to swap register variables
git-svn-id: svn://svn.cc65.org/cc65/trunk@1629 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
22
libsrc/runtime/regswap1.s
Normal file
22
libsrc/runtime/regswap1.s
Normal file
@@ -0,0 +1,22 @@
|
||||
;
|
||||
; Ullrich von Bassewitz, 25.11.2002
|
||||
;
|
||||
; CC65 runtime: Swap 1 byte of register variable space
|
||||
;
|
||||
|
||||
.export regswap1
|
||||
.importzp sp, regbank
|
||||
|
||||
.proc regswap1
|
||||
|
||||
lda regbank,x ; Get old value
|
||||
pha ; Save it
|
||||
lda (sp),y ; Get stack loc
|
||||
sta regbank,x ; Store new value
|
||||
pla
|
||||
sta (sp),y ; Store old value
|
||||
rts
|
||||
|
||||
.endproc
|
||||
|
||||
|
||||
Reference in New Issue
Block a user