Files
open-simh.simtools/crossassemblers/macro11/tests/test-locals.mac
Olaf Seibert 404a7e726d Add 'crossassemblers/macro11/' from commit '2a14ffe2519589011ffc4050d5d4fd6591fb4c3c'
git-subtree-dir: crossassemblers/macro11
git-subtree-mainline: fc2c8875ca
git-subtree-split: 2a14ffe251

command was: git subtree add --prefix=crossassemblers/macro11 git://github.com/Rhialto/macro11.git master
2016-02-21 11:00:41 +01:00

34 lines
436 B
Plaintext

;;;;;
;
; Test long local labels
;
lab1: beq 1$
1$: bne lab1
; -- new scope
lab2a: beq 12345$
12345$: bne lab2a
; -- new scope
lab2b: beq 12345$
12345$: bne lab2b
; -- new scope
lab3: beq 1$
1$: bne 2$
2$: beq 3$
3$: beq 4$
4$: beq lab3
; -- new scope
lab4: beq 1$
1$: bne 2$
2$: beq 3$
3$: beq 4$
4$: beq lab4