1
0
mirror of https://github.com/fachat/xa65.git synced 2024-07-28 21:28:57 +00:00
xa65/xa/tests/relocundef/test1.a65

10 lines
89 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