1
0
mirror of https://github.com/fachat/xa65.git synced 2024-10-20 22:25:31 +00:00
xa65/xa/tests/ca65/unnamed1.a65
2012-07-28 14:53:23 +02:00

15 lines
176 B
Plaintext
Executable File

// test of unnamed labels
start *=$4000
lda #$00
: iny ; first
bne :- ; go to first
beq :++ ; go to third
: ; second
jmp :- ; go to second
: ldy #1 ; third
nop