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
The assembler chooses 'zero page,X' when it should choose 'absolute,X'. e.g. the "ORA absolute,X" instruction is assembled as "ORA zp,X" even though it isn't, when using a label thats defined later.
i.e. I think this will not produce the correct bytes:
"""
ORG $200
ORA label,X
label:
DB $ff
"""
The text was updated successfully, but these errors were encountered:
The assembler chooses 'zero page,X' when it should choose 'absolute,X'. e.g. the "ORA absolute,X" instruction is assembled as "ORA zp,X" even though it isn't, when using a label thats defined later.
i.e. I think this will not produce the correct bytes:
"""
ORG $200
ORA label,X
label:
DB $ff
"""
The text was updated successfully, but these errors were encountered: