Files
cc65/test/asm/listing/307-scope-chains.s
2025-08-21 10:07:54 -07:00

19 lines
534 B
ArmAsm

.scope foo
.scope outer
.scope inner
bar = 1
.endscope
.endscope
.scope another
.scope nested
lda #outer::inner::bar ; 1
.endscope
.endscope
.endscope
.scope outer
.scope inner
bar = 2
.endscope
.endscope