listca65.a65


    2 A:1000                                    ; tests the html listing feature with blocks that 
    3 A:1000                                    ; contain the same label names, but in different scopes

    5 A:1000                                     *= $1000

    7 A:1000  a9 00                     :           lda #$00

    9 A:1002                                     .( 
   10 A:1002  85 02                     :           sta $02
   11 A:1004  d0 fe                     :           bne :-
   12 A:1006                                     .) 

   14 A:1006                                     .( 
   15 A:1006                            @label2   
   15 A:1006  a5 02                              lda $02              ; again!
   16 A:1008  d0 fc                              bne @label2
   17 A:100a                                     .) 

   19 A:100a                            label2    
   19 A:100a  c8                                 iny 
   20 A:100b  f0 fd                              beq label2

   22 A:100d  f0 f1                              beq :---
   23 A:100f  4c 02 10                           jmp :--