1
0
mirror of https://github.com/fachat/xa65.git synced 2024-11-03 06:05:58 +00:00
xa65/xa/tests/ca65/unnamed2.a65

18 lines
208 B
Plaintext
Raw Normal View History

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