Advertisement
AnthonyCagliano

Untitled

Apr 4th, 2023
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. ; memrev(void *data, size_t len)
  2. _memrev:
  3. ld iy, -3
  4. add iy, sp
  5. ld bc, (iy + 9)
  6. ld hl, (iy + 6)
  7. add hl, bc
  8. ld de, (iy + 6)
  9. inc bc
  10. res 0, c
  11. .loop:
  12. ld a, (de)
  13. dec bc
  14. dec hl
  15. ldi
  16. ld (hl), a
  17. dec hl
  18. jp po, .loop
  19. ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement