Mirror of CollapseOS
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

17 líneas
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.)