Update vga.h

Add vga_init(); function prototype
This commit is contained in:
2026-01-15 17:00:37 -08:00
committed by GitHub
parent 4047bc3936
commit f516334e0d

View File

@@ -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
#endif