aboutsummaryrefslogtreecommitdiff
path: root/src/graphics/vga.h
blob: 7c96c08a06a3392b7ba9342e16361d6b328578ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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_write_string(const char *data);

#endif