16 lines
643 B
Plaintext
16 lines
643 B
Plaintext
ca65 Vx.xx - Git XXXXXXXXX
|
|
Main file : 306-scope-use-before-definition.s
|
|
Current file: 306-scope-use-before-definition.s
|
|
|
|
000000r 1 .scope foo
|
|
000000r 1 bar = 3
|
|
000000r 1 .endscope
|
|
000000r 1
|
|
000000r 1 .scope outer
|
|
000000r 1 A9 03 lda #foo::bar ; Will load 3, not 2!
|
|
000002r 1 .scope foo
|
|
000002r 1 bar = 2
|
|
000002r 1 .endscope
|
|
000002r 1 .endscope
|
|
000002r 1
|