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
Labels generated on absolute indexed LDA operations behave somewhat strange
e.g. LDX.W UNREACH_808746,Y LDA.W UNREACH_80837F,X
Marking the sections as data will change those generated labels to
LDX.W DATA16_808746,Y LDA.W DATA16_80837F,X
But it will not add any label to the marked data section (actual address 008746) in disassembled code and will create a label DATA16_808746 = $808746 in the label section
This may have to do with other existing issues in regards to labels and mirroring.
The text was updated successfully, but these errors were encountered:
Labels generated on absolute indexed LDA operations behave somewhat strange
e.g.
LDX.W UNREACH_808746,Y
LDA.W UNREACH_80837F,X
Marking the sections as data will change those generated labels to
LDX.W DATA16_808746,Y
LDA.W DATA16_80837F,X
But it will not add any label to the marked data section (actual address
008746
) in disassembled code and will create a labelDATA16_808746 = $808746
in the label sectionThis may have to do with other existing issues in regards to labels and mirroring.
The text was updated successfully, but these errors were encountered: