Mirror of CollapseOS
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

17 Zeilen
439B

  1. Variable actions are expected to be called with labels in
  2. front of them. Example, "L2 FSET"
  3. About that "1 -": z80 relative jumps record "e-2", that is,
  4. the offset that *counts the 2 bytes of the jump itself*.
  5. Because we set the label *after* the jump OP1 itself, that's 1
  6. byte that is taken care of. We still need to adjust by another
  7. byte before writing the offset.
  8. (cont.)