mirror of
https://github.com/fachat/xa65.git
synced 2025-01-03 23:29:26 +00:00
16 lines
189 B
Plaintext
16 lines
189 B
Plaintext
|
|
; test of unnamed labels
|
|
|
|
start: .org $4000
|
|
|
|
lda #$00
|
|
: iny ; first
|
|
bne :- ; go to first
|
|
beq :++ ; go to third
|
|
: ; second
|
|
jmp :- ; go to second
|
|
jmp :++
|
|
: ldy #1 ; third
|
|
: nop
|
|
|