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.
28 lines
446 B
ArmAsm
28 lines
446 B
ArmAsm
12 years ago
|
;
|
||
|
; Ullrich von Bassewitz, 11.04.1999
|
||
|
;
|
||
|
; CC65 runtime: Load an unsigned char indirect from pointer somewhere in stack
|
||
|
;
|
||
|
|
||
|
.export ldau00sp, ldau0ysp
|
||
|
.importzp sp, ptr1
|
||
|
|
||
|
.macpack cpu
|
||
|
|
||
|
ldau00sp:
|
||
|
ldy #1
|
||
|
ldau0ysp:
|
||
|
lda (sp),y
|
||
|
sta ptr1+1
|
||
|
dey
|
||
|
lda (sp),y
|
||
|
sta ptr1
|
||
|
ldx #0
|
||
|
.if (.cpu .bitand CPU_ISET_65SC02)
|
||
|
lda (ptr1) ; Save one cycle for the C02
|
||
|
.else
|
||
|
lda (ptr1,x)
|
||
|
.endif
|
||
|
rts
|
||
|
|