There should be an option to create labels relative to a label. For example:
L1 .byte $00 L2 .byte $40
LDA L1 STA $C0 LDA L2 STA $C1
=>
L1 .word $4000
LDA L1 STA $C0 LDA L1+1 STA $C1
Log in to post a comment.