Mirror of CollapseOS
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

17 wiersze
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.)