Guest User

Untitled

a guest
Jan 19th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. void putch(byte page, byte y, char c) {
  2. int indice, i;
  3.  
  4. indice = (c - ' ');
  5. indice += indice << 2;
  6. for(i=0; i<5; ++i){
  7. writeByte(page, y, font5x7[indice]);
  8. ++indice;
  9. ++y;
  10. }
  11. writeByte(page, y+6, 0);
  12. }
Add Comment
Please, Sign In to add comment