Advertisement
Runer112

FillRect

Oct 5th, 2015
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. FillRect:
  2. ; a=color, bc=width, de=x, h=height, l=y
  3. ld (FillRect_Color),a
  4. ld a,h
  5. ld h,160
  6. mlt hl
  7. add hl,hl
  8. add hl,de
  9. ld de,vRam
  10. add hl,de
  11. dec bc
  12. FillRect_Loop:
  13. FillRect_Color = $+1
  14. ld (hl),0
  15. push hl
  16. pop de
  17. inc de
  18. push bc
  19. ldir
  20. pop bc
  21. ld de,lcdWidth
  22. add hl,de
  23. sbc hl,bc
  24. dec a
  25. jr nz,FillRect_Loop
  26. ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement