mirror of
https://github.com/cc65/cc65.git
synced 2024-12-26 08:32:00 +00:00
85b25b3d22
git-svn-id: svn://svn.cc65.org/cc65/trunk@5705 b7a2c559-68d2-44c3-8de9-860c34a00d81
38 lines
437 B
ArmAsm
38 lines
437 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 06.08.1998
|
|
;
|
|
; CC65 runtime: long push
|
|
;
|
|
|
|
;
|
|
; push eax on stack
|
|
;
|
|
.export pushl0, push0ax, pusheax
|
|
.import decsp4
|
|
.importzp sp, sreg
|
|
|
|
pushl0:
|
|
lda #0
|
|
tax
|
|
push0ax:
|
|
ldy #0
|
|
sty sreg
|
|
sty sreg+1
|
|
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
|
|
dey
|
|
pla
|
|
sta (sp),y
|
|
rts
|
|
|