Remove/cleanup

git-svn-id: svn://svn.cc65.org/cc65/trunk@825 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2001-07-26 20:08:10 +00:00
parent bbebbe3a1b
commit 2dd227534f
4 changed files with 10 additions and 38 deletions

View File

@@ -4,15 +4,13 @@
; CC65 runtime: Load a unsigned indirect from address in ax
;
.export ldaui, ldauidx
.export ldauidx
.importzp ptr1
ldaui:
ldy #0
ldauidx:
.proc ldauidx
sta ptr1
stx ptr1+1
ldx #0
lda (ptr1),y
rts
.endproc