Mirror of CollapseOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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