diff options
Diffstat (limited to 'src/graphics/graphics.h')
-rw-r--r-- | src/graphics/graphics.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/graphics/graphics.h b/src/graphics/graphics.h new file mode 100644 index 0000000..7c449f1 --- /dev/null +++ b/src/graphics/graphics.h @@ -0,0 +1,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
\ No newline at end of file |