Advertisement
Runer112

LoadxLIBCPalette

Oct 5th, 2015
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. LoadxLIBCPalette:
  2. ld de,mpLcdPalette
  3. ld b,l
  4. LoadxLIBCPalette_Loop:
  5. ld a,b
  6. rrca
  7. xor b
  8. and %11100000
  9. xor b
  10. ld (de),a
  11. inc de
  12. ld a,b
  13. rra
  14. ld (de),a
  15. inc de
  16. inc b
  17. jr nz,LoadxLIBCPalette_Loop
  18. ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement