RosettaCodeData/Task/Scope-modifiers/68000-Assembly/scope-modifiers.68000

7 lines
154 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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