I have a huge code with ASM 6. I use
.org $B045
It goes up like to $B500
I'd like a message when compiling or an easy way to know what is the address of a specific line in RAM (for example $B302)
Let's say it's my code
LDA #$00
STA $340 ;WHERE IS IT??
LDA #$01
I would like to have the address where second instruction is in RAM without searching it. Is there a way?
.org $B045
It goes up like to $B500
I'd like a message when compiling or an easy way to know what is the address of a specific line in RAM (for example $B302)
Let's say it's my code
LDA #$00
STA $340 ;WHERE IS IT??
LDA #$01
I would like to have the address where second instruction is in RAM without searching it. Is there a way?