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

9 行
219B

  1. ; Compare HL with DE and sets Z and C in the same way as a regular cp X where
  2. ; HL is A and DE is X.
  3. cpHLDE:
  4. push hl
  5. or a ;reset carry flag
  6. sbc hl, de ;There is no 'sub hl, de', so we must use sbc
  7. pop hl
  8. ret