mirror of
https://github.com/fachat/xa65.git
synced 2025-04-22 14:37:24 +00:00
24 lines
257 B
Plaintext
24 lines
257 B
Plaintext
|
|
// tests the html listing feature with blocks that
|
|
// contain the same label names, but in different scopes
|
|
|
|
*=$1000
|
|
|
|
label1 lda #$00
|
|
|
|
.(
|
|
label2 sta $02
|
|
bne label2
|
|
.)
|
|
|
|
.(
|
|
label2 lda $02 ; again!
|
|
bne label2
|
|
.)
|
|
|
|
label2 iny
|
|
beq label2
|
|
|
|
jmp label1
|
|
|