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.

12345678910111213141516
  1. Structured flow
  2. z80a also has words that behave similarly to IF..THEN and
  3. BEGIN..UNTIL.
  4. On the IF side, we have IFZ, IFNZ, IFC, IFNC, and THEN,. When
  5. the opposite condition is met, a relative jump is made to
  6. THEN,'s PC. For example, if you have IFZ, a jump is made when
  7. Z is unset.
  8. On the BEGIN,..AGAIN, side, it's a bit different. You start
  9. with your BEGIN, instruction, and then later you issue a
  10. JRxx, instr followed by AGAIN,. Exactly like you would do
  11. with a label.
  12. (cont.)