Mirror of CollapseOS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
540B

  1. lblnext BSET PC ORG @ 0x1b + ! ( next )
  2. ( This routine is jumped to at the end of every word. In it,
  3. we jump to current IP, but we also take care of increasing
  4. it by 2 before jumping. )
  5. ( Before we continue: are stacks within bounds? )
  6. ( PS ) HL PS_ADDR LDdn,
  7. SP SUBHLd,
  8. JRC, lblofl BWR ( abortUnderflow-B285 )
  9. ( RS ) IX PUSH, HL POP,
  10. DE RS_ADDR LDdn,
  11. DE SUBHLd,
  12. JRC, lblofl BWR ( IX < RS_ADDR? abortUnderflow-B285 )
  13. E 0 IY+ LDrIXY,
  14. D 1 IY+ LDrIXY,
  15. IY INCd, IY INCd,
  16. ( continue to execute )