aboutsummaryrefslogtreecommitdiff
path: root/src/graphics/vga.h
blob: 7c449f134fc936baef150a9eab8d52e28d4a11c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef MELVIX_VGA_H
#define MELVIX_VGA_H

#include <stddef.h>
#include <stdint.h>

enum vga_color;

void terminal_initialize(void);

void terminal_set_color(uint8_t color);

void terminal_clear();

void terminal_write_string(const char *data);

void terminal_put_char(char c);

#endif