RosettaCodeData/Task/Scope-modifiers/68000-Assembly/scope-modifiers.68000
2023-07-01 13:44:08 -04:00

6 lines
154 B
Text

foo:
MOVE.L #$DEADBEEF,D0
MOVE.L #$16-1,D1
.bar:
DBRA D1,.bar ;any code outside "foo" cannot JMP, Bxx, BRA, or JSR/BSR here by using the name ".bar"
RTS