You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will fail to compile the second and third instructions because the parser doesn't accept a space between the comma and the Y. Aesthetically, a space looks kind of nice.
PROCESSOR 6502
ORG 0
LDA ($10),Y
LDA ($10), Y ; error (Illegal addressing mode)
LDA $2000, Y ; error (Unresolved symbol Y)
The text was updated successfully, but these errors were encountered:
This will fail to compile the second and third instructions because the parser doesn't accept a space between the comma and the Y. Aesthetically, a space looks kind of nice.
The text was updated successfully, but these errors were encountered: