1
0
mirror of https://github.com/fachat/xa65.git synced 2024-10-19 00:23:55 +00:00
xa65/xa/tests/relocundef/test2.a65

12 lines
100 B
Plaintext
Raw Normal View History

2011-12-16 22:04:51 +00:00
// this file defines an undefined label
.text
ldx #1
l1 lda undefl
dex
bne l1
rts
undefl =1