Example #1
0
 void putc(char c)
 {
     if (c == '\n')
     {
         _pos.newLine();
         return;
     }
     write(_pos, 0xf, c);
     gotoxy(++_pos);
 }