Advertisement
wolfboyft

!?!?!?!??!?!?!??!?1//1//1//1//1/?!?/1//1?

Jul 22nd, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. ;...
  2.  
  3. ld hl, Font
  4. ld de, _VRAM
  5. ld bc, FontEnd - Font
  6. call CopyDoubleForwards
  7.  
  8. ;...
  9.  
  10. CopyDoubleForwards::
  11. ;copy bc bytes forward from hl to de, twice for each byte
  12. ld a, b
  13. or c
  14. ret z
  15. ld a, [hli]
  16. ld [de], a
  17. inc de
  18. ld [de], a
  19. inc de
  20. dec bc
  21. jr CopyForwards
  22.  
  23. ;...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement