1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-12 00:23:53 +00:00
cc65/libsrc/runtime/ldausp.s

17 lines
202 B
ArmAsm
Raw Normal View History

;
; Ullrich von Bassewitz, 31.08.1998
;
; CC65 runtime: Load a unsigned from offset in stack
;
.export ldausp, ldauysp
.importzp sp
ldausp: ldy #0
ldauysp:
ldx #0
lda (sp),y
rts