You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
369 B
ArmAsm
35 lines
369 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 06.08.1998
|
|
;
|
|
; CC65 runtime: long push
|
|
;
|
|
|
|
;
|
|
; push eax on stack
|
|
;
|
|
.export push0ax, pusheax
|
|
.import decsp4
|
|
.importzp sp, sreg
|
|
|
|
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
|
|
|