mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-01 19:20:56 +11:00
12 lines
202 B
NASM
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
|