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