mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 03:04:31 +00:00
50 lines
917 B
ArmAsm
50 lines
917 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 06.08.1998
|
|
; Christian Krueger, 11-Mar-2017, added 65SC02 optimization
|
|
;
|
|
; CC65 runtime: long push
|
|
;
|
|
|
|
;
|
|
; push eax on stack
|
|
;
|
|
.export pushl0, push0ax, pusheax
|
|
.import decsp4
|
|
.importzp sp, sreg
|
|
|
|
.macpack cpu
|
|
|
|
pushl0:
|
|
lda #0
|
|
tax
|
|
push0ax:
|
|
.if (.cpu .bitand ::CPU_ISET_65SC02)
|
|
stz sreg
|
|
stz sreg+1
|
|
.else
|
|
ldy #$00
|
|
sty sreg
|
|
sty sreg+1
|
|
.endif
|
|
pusheax:
|
|
pha ; decsp will destroy A (but not X)
|
|
jsr decsp4
|
|
ldy #3
|
|
lda sreg+1
|
|
sta (sp),y
|
|
dey
|
|
lda sreg
|
|
sta (sp),y
|
|
dey
|
|
txa
|
|
sta (sp),y
|
|
pla
|
|
.if (.cpu .bitand ::CPU_ISET_65SC02)
|
|
sta (sp)
|
|
.else
|
|
dey
|
|
sta (sp),y
|
|
.endif
|
|
rts
|
|
|