1
0
mirror of https://github.com/fachat/xa65.git synced 2024-08-14 10:29:19 +00:00
xa65/xa/tests/fordef/test.asm
2011-12-16 23:04:51 +01:00

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"