1#ifndef KERNEL_TERMINAL_H
2#define KERNEL_TERMINAL_H
4#include <utils/compiler.h>
16 VGA_COLOR_MAGENTA = 5,
18 VGA_COLOR_LIGHT_GREY = 7,
19 VGA_COLOR_DARK_GREY = 8,
20 VGA_COLOR_LIGHT_BLUE = 9,
21 VGA_COLOR_LIGHT_GREEN = 10,
22 VGA_COLOR_LIGHT_CYAN = 11,
23 VGA_COLOR_LIGHT_RED = 12,
24 VGA_COLOR_LIGHT_MAGENTA = 13,
25 VGA_COLOR_LIGHT_BROWN = 14,
30void tty_putchar(
char c);
31void tty_write(
const char *buffer,
size_t size);
32void tty_puts(
const char *buffer);
39void tty_set_color(uint8_t color);