mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
29 lines
383 B
ArmAsm
29 lines
383 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 22.06.1998
|
||
|
;
|
||
|
; CC65 runtime: Load a long from somewhere in the stack
|
||
|
;
|
||
|
; Beware: The optimizer knows about the register contents after calling
|
||
|
; this function!
|
||
|
;
|
||
|
|
||
|
|
||
|
.export ldeax0sp, ldeaxysp
|
||
|
.importzp sreg, sp
|
||
|
|
||
|
ldeax0sp:
|
||
|
ldy #3
|
||
|
ldeaxysp:
|
||
|
lda (sp),y
|
||
|
sta sreg+1
|
||
|
dey
|
||
|
lda (sp),y
|
||
|
sta sreg
|
||
|
dey
|
||
|
lda (sp),y
|
||
|
tax
|
||
|
dey
|
||
|
lda (sp),y
|
||
|
rts
|
||
|
|