We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2dab35 commit 4da04c7Copy full SHA for 4da04c7
1 file changed
src/interp/strindex.asm
@@ -27,8 +27,8 @@
27
; String indexing
28
; ---------------
29
30
- .importzp tmp1, tmp3, sptr, next_ins_incsp
31
- .import stack_l, stack_h
+ .importzp tmp1, tmp3
+ .import stack_l, stack_h, next_ins_incsp_2
32
33
.include "atari.inc"
34
@@ -43,9 +43,6 @@
43
; SP = Position
44
; SP+1 = String address
45
46
- ; Fix stack pointer
47
- inc sptr
48
-
49
cpx #0
50
bmi zero
51
beq ok1
@@ -85,7 +82,7 @@ xit:
85
82
; Return new string position
86
83
lda #<(LBUFF-1)
87
84
ldx #>(LBUFF-1)
88
- jmp next_ins_incsp
+ jmp next_ins_incsp_2
89
90
zero:
91
ldx #0
0 commit comments