1
0
mirror of https://github.com/fachat/xa65.git synced 2024-07-10 11:28:56 +00:00
xa65/xa/tests/relocundef/test2.a65
2011-12-16 23:04:51 +01:00

12 lines
100 B
Plaintext

// this file defines an undefined label
.text
ldx #1
l1 lda undefl
dex
bne l1
rts
undefl =1