From 247fb5a8476aa66fdc6d4f042b0a743fe7c3ab2b Mon Sep 17 00:00:00 2001 From: aqua Date: Tue, 1 Nov 2022 17:43:33 +0200 Subject: Add uppercase scancodes Make text mode screen scroll --- devices/vga.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'devices/vga.h') diff --git a/devices/vga.h b/devices/vga.h index c2ef2ef..63de309 100644 --- a/devices/vga.h +++ b/devices/vga.h @@ -22,3 +22,10 @@ enum vga_color { void vga_init(); void vga_clear(enum vga_color foreground, enum vga_color background); + +void vga_putc(char a); +void vga_puts(const char *string, int len); + +void vga_enable_cursor(unsigned char start, unsigned char end); +void vga_disable_cursor(); +void vga_update_cursor(); -- cgit v1.2.1