2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 31.08.1998
|
|
|
|
;
|
|
|
|
; CC65 runtime: Load a unsigned indirect from address in ax
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export ldauidx
|
|
|
|
.importzp ptr1
|
2001-07-26 20:08:10 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.proc ldauidx
|
|
|
|
sta ptr1
|
|
|
|
stx ptr1+1
|
|
|
|
ldx #0
|
|
|
|
lda (ptr1),y
|
|
|
|
rts
|
2001-07-26 20:08:10 +00:00
|
|
|
.endproc
|