Unexpected Behaviour: No 'Z' address label being created for 6502 JSR target
Closed this issue · 2 comments
phillipeaton commented
All of my 6502 JSRs without any label
show up as below (Z283E)
But later on in my code, I get the following, a JSR $345C
with a raw address
A far as I can see, I don't have any const
or other directive affecting this JSR or the associated target address.
I am unable to use label 345C some_label
to force a label.
The disassembly /reassembly works and I can single step the code without problem.,I just don't understand why it's not creating an automatic label?
Any ideas?
phillipeaton commented
I solved this, you may recall I had some const
workarounds in place for output strings containing \
that were fooling the as65 assembler. I took them out and the problem went away. I now have no workarounds remaining. 😎
Arakula commented
No more workarounds? Cool!