mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
28 lines
672 B
ArmAsm
28 lines
672 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 1998-08-21, 2009-02-22
|
|
;
|
|
; CC65 runtime: Pop TOS into sreg
|
|
;
|
|
|
|
.export popsreg
|
|
.import incsp2
|
|
.importzp sp, sreg
|
|
|
|
.macpack cpu
|
|
|
|
popsreg:
|
|
pha ; save A
|
|
ldy #1
|
|
lda (sp),y ; get hi byte
|
|
sta sreg+1 ; store it
|
|
.if (.cpu .bitand ::CPU_ISET_65SC02)
|
|
lda (sp) ; get lo byte
|
|
.else
|
|
dey
|
|
lda (sp),y ; get lo byte
|
|
.endif
|
|
sta sreg ; store it
|
|
pla ; get A back
|
|
jmp incsp2 ; bump stack and return
|
|
|