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.

15 lines
409B

  1. ( Computes n into crc c with polynomial 0x1021 )
  2. CODE _crc16 ( c n -- c ) EXX, ( protect BC )
  3. HL POP, ( n ) DE POP, ( c )
  4. A L LDrr, D XORr, D A LDrr,
  5. B 8 LDri,
  6. BEGIN,
  7. E SLA, D RL,
  8. IFC, ( msb is set, apply polynomial )
  9. A D LDrr, 0x10 XORi, D A LDrr,
  10. A E LDrr, 0x21 XORi, E A LDrr,
  11. THEN,
  12. DJNZ, AGAIN,
  13. DE PUSH,
  14. EXX, ( unprotect BC ) ;CODE