Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
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