Files
cc65/test/asm/listing/311-close-new-scopes-error.s
2025-08-21 10:07:54 -07:00

10 lines
92 B
ArmAsm

.scope foo
start:
jmp bar::start
.endscope
.scope bar
start:
rts
.endscope