1
0
mirror of https://github.com/fachat/xa65.git synced 2025-01-17 10:30:26 +00:00
xa65/xa/tests/ca65/unnamed1.a65

16 lines
189 B
Plaintext
Raw Normal View History

2012-07-28 14:53:23 +02:00
; test of unnamed labels
2012-07-28 14:53:23 +02:00
start: .org $4000
2012-07-28 14:53:23 +02:00
lda #$00
: iny ; first
bne :- ; go to first
beq :++ ; go to third
: ; second
jmp :- ; go to second
jmp :++
2012-07-28 14:53:23 +02:00
: ldy #1 ; third
: nop
2012-07-28 14:53:23 +02:00