1
0
mirror of https://github.com/fachat/xa65.git synced 2024-06-08 23:29:30 +00:00
xa65/xa/tests/fordef/test.asm
2014-08-20 13:02:57 +02:00

21 lines
218 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.s"