mirror of
https://github.com/fachat/xa65.git
synced 2024-11-20 11:32:34 +00:00
21 lines
220 B
NASM
21 lines
220 B
NASM
.word $0400
|
|
* = $0400
|
|
|
|
/* this should generate optimizer warnings */
|
|
|
|
lda forward1
|
|
sta forward2
|
|
|
|
/* this shouldn't */
|
|
|
|
jmp forward3
|
|
|
|
/* and this won't */
|
|
|
|
t1 lda `forward1
|
|
sta `forward2
|
|
rts
|
|
|
|
#include "test2.asm"
|
|
|