blob: 3c4b09e89b3d4d5dc9e11cf00b0433c051a19be8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _TTY_H_
#define _TTY_H_
#include "types.h"
void tty_init();
void tty_setcolor(uint8_t color);
void tty_putchar(char c);
void tty_writestring(const char* data);
#endif
|