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,16 @@
; CC65 runtime: Load a indirect from address in ax
;
.export ldai, ldaidx
.export ldaidx
.importzp ptr1
ldai: ldy #$00
ldaidx: sta ptr1
.proc ldaidx
sta ptr1
stx ptr1+1
ldx #$00
lda (ptr1),y
bpl L9
bpl @L1
dex
L9: rts
@L1: rts
.endproc