Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
202B

  1. ; test some weird label bug zasm had at some point. Simply to refer to a local
  2. ; label in a .dw directive would mess up future label references.
  3. foo:
  4. inc a
  5. .bar:
  6. inc b
  7. .baz:
  8. .dw .bar
  9. loop:
  10. jr loop