blob: 0e142c6a5c688be11c1c686103293acd2547c7a6 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <stdint.h>
void tty_init(void);
void tty_clear(void);
void tty_set_color(uint8_t);
uint8_t tty_get_color(void);
void tty_putchar_at(char ch, uint8_t color, int x, int y);
void tty_putchar(char ch);
void tty_puts(const char*);
|