From f516334e0db95973e0d3a42cb8d36f7530f9f71e Mon Sep 17 00:00:00 2001 From: Gregory Bowne Date: Thu, 15 Jan 2026 17:00:37 -0800 Subject: [PATCH] Update vga.h Add vga_init(); function prototype --- kernel/vga.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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