2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 06.08.1998
|
|
|
|
;
|
|
|
|
; CC65 runtime: swap ax with TOS
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export swapstk
|
|
|
|
.importzp sp, ptr4
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
swapstk:
|
2013-05-09 13:56:54 +02:00
|
|
|
sta ptr4
|
|
|
|
stx ptr4+1
|
|
|
|
ldy #1 ; index
|
|
|
|
lda (sp),y
|
|
|
|
tax
|
|
|
|
lda ptr4+1
|
|
|
|
sta (sp),y
|
|
|
|
dey
|
|
|
|
lda (sp),y
|
|
|
|
pha
|
|
|
|
lda ptr4
|
|
|
|
sta (sp),y
|
|
|
|
pla
|
|
|
|
rts ; whew!
|
2000-05-28 13:40:48 +00:00
|
|
|
|