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.

17 lines
536B

  1. Labels are a convenient way of managing relative jump
  2. calculations. Backward labels are easy. It is only a matter or
  3. recording "HERE" and do subtractions. Forward labels record the
  4. place where we should write the offset, and then when we get to
  5. that point later on, the label records the offset there.
  6. To avoid using dict memory in compilation targets, we
  7. pre-declare label variables here, which means we have a limited
  8. number of it. For now, 4 ought to be enough.
  9. (cont.)