2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 31.08.1998
|
|
|
|
;
|
|
|
|
; CC65 runtime: Load ax indirect from address in ax
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export ldaxi, ldaxidx
|
|
|
|
.importzp ptr1
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
ldaxi: ldy #1
|
2000-05-28 13:40:48 +00:00
|
|
|
ldaxidx:
|
2013-05-09 13:56:54 +02:00
|
|
|
sta ptr1
|
|
|
|
stx ptr1+1
|
|
|
|
lda (ptr1),y
|
|
|
|
tax
|
|
|
|
dey
|
|
|
|
lda (ptr1),y
|
|
|
|
rts
|
2000-05-28 13:40:48 +00:00
|
|
|
|