1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-23 03:40:19 +10:00
collapseos/tests/zasm/test9.asm
2019-12-31 13:07:05 -05:00

12 lines
202 B
NASM

; test some weird label bug zasm had at some point. Simply to refer to a local
; label in a .dw directive would mess up future label references.
foo:
inc a
.bar:
inc b
.baz:
.dw .bar
loop:
jr loop