blob: fa97e110c338342c8bad77c5d4b5bf3c83f438d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef VGA_H
#define VGA_H
#include <stdint.h>
void vga_print_at(uint16_t pos, const char *sz);
void vga_set_color(uint8_t color);
void vga_blank();
void vga_printch(char ch);
#endif
|