diff --git a/kernel/vga.h b/kernel/vga.h index e37b2cf..9dfc859 100644 --- a/kernel/vga.h +++ b/kernel/vga.h @@ -35,6 +35,7 @@ typedef enum { // Function prototypes uint8_t vga_entry_color(vga_color fg, vga_color bg); uint16_t vga_entry(unsigned char uc, uint8_t color); +void vga_init(void); void vga_put_entry_at(char c, uint8_t color, size_t x, size_t y); void vga_clear(uint8_t color); @@ -50,4 +51,4 @@ void vga_set_cursor_blink_rate(uint8_t rate); void vga_printf(const char* format, ...); -#endif \ No newline at end of file +#endif