Advertisement
Guest User

Untitled

a guest
Jan 14th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub drawTile
  2.     For x As UByte = 0 To 7
  3.         For y As UByte = 0 To 7
  4.     cpu.memory((&h200+(&h20*y))+x) = (((rom(&h8018+y)Shr(7-x)) And 1)Shl 1)
  5.     cpu.memory((&h200+(&h20*y))+x) or= ((rom(&h8010+y)Shr (7-x)) And 1)
  6.         Next
  7.         next
  8. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement