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.
25 lines
303 B
ArmAsm
25 lines
303 B
ArmAsm
12 years ago
|
;
|
||
|
; Ullrich von Bassewitz, 11.04.1999
|
||
|
;
|
||
|
; CC65 runtime: Load an unsigned char indirect from pointer somewhere in stack
|
||
|
;
|
||
|
|
||
|
.export ldaui0sp, ldauiysp
|
||
|
.importzp sp, ptr1
|
||
|
|
||
|
ldaui0sp:
|
||
|
ldy #1
|
||
|
ldauiysp:
|
||
|
lda (sp),y
|
||
|
sta ptr1+1
|
||
|
dey
|
||
|
lda (sp),y
|
||
|
sta ptr1
|
||
|
txa
|
||
|
tay
|
||
|
ldx #0
|
||
|
lda (ptr1),y
|
||
|
rts
|
||
|
|
||
|
|