1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-22 23:20:20 +10:00
collapseos/tools/tests/zasm/test9.asm

12 lines
202 B
NASM
Raw Normal View History

; 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