- #1
- 184
- 0
I cannot understand why the following bits are equivalent:
The 1 is throwing me off. Since the X register is post incremented, why is it necessary? I would think that LDAA 0,X+ would be equivalent to the first bit of code. What am I missing?
Code:
LDAA 0,X
INCX
;and
LDAA 1,X+
The 1 is throwing me off. Since the X register is post incremented, why is it necessary? I would think that LDAA 0,X+ would be equivalent to the first bit of code. What am I missing?