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
enemy_names:
db $AD, $CE ;CC6500| | ;
TEXT_CC6502:
db $EF, $EF ;CC6502| | ;
Ideally Diz would allow an offset value, and interpret the second LDA as LDA.L enemy_names+2,X . This could avoid generating the second label in the sample data, simplifying that to the following:
enemy_names:
db $AD, $CE,$EF, $EF ;CC6500| | ;
The text was updated successfully, but these errors were encountered:
Sample code from current disassembly:
Sample data:
Ideally Diz would allow an offset value, and interpret the second LDA as
LDA.L enemy_names+2,X
. This could avoid generating the second label in the sample data, simplifying that to the following:The text was updated successfully, but these errors were encountered: