Advertisement
AnthonyCagliano

Untitled

Apr 7th, 2022
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ; hash_init(alg, context);
  2. hash_init:
  3. pop iy,de,hl
  4. push hl,de
  5. ld h, 9
  6. mlt hl
  7. push de
  8. ld bc, hash_func_lookup
  9. add hl, bc
  10. ld bc, 9
  11. ldir
  12. pop hl
  13. call _indcallhl
  14. jp (iy)
  15.  
  16. ; hash_update(context, data, len);
  17. hash_update:
  18. pop iy,de,bc,hl
  19. push hl,bc,de
  20. add hl, 3
  21. jp (hl)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement