Mirror of CollapseOS
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

17 строки
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.)