Files
cc65/test/asm/listing/306-scope-use-before-definition.s
2025-08-21 10:07:54 -07:00

11 lines
254 B
ArmAsm

.scope foo
bar = 3
.endscope
.scope outer
lda #foo::bar ; Will load 3, not 2!
.scope foo
bar = 2
.endscope
.endscope