Mirror of CollapseOS
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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