From fde8a1ab65d5e33d90123a3aaa9b5c15e249689f Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Thu, 29 Apr 2021 08:49:41 +0200 Subject: Debug, add memory print driver --- src/drivers/vga_t.hpp | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/drivers/vga_t.hpp (limited to 'src/drivers/vga_t.hpp') diff --git a/src/drivers/vga_t.hpp b/src/drivers/vga_t.hpp deleted file mode 100644 index bf553bf..0000000 --- a/src/drivers/vga_t.hpp +++ /dev/null @@ -1,35 +0,0 @@ -#pragma once - -#include "core/types.hpp" - -typedef enum VIDEO_COLORS { - BLACK=0, BLUE=1, GREEN=2,CYAN=3, RED=4,PURPLE=5,BROWN=6,GRAY=7, - DARK_GRAY=8,LIGHT_BLUE=9,LIGHT_GREEN=10,LIGHT_CYAN=11,LIGHT_RED=12,LIGHT_PURPLE=13,YELLOW=14,WHITE=15 - -} VIDEO_COLORS; - -typedef struct VIDEO_STATE { - u8 *mem; - u8 col; - u8 line; - u8 bg; - u8 fg; -} VIDEO_STATE; - -void vga_t_init(); - -/** - * Print char - */ -void vga_t_putchar(char); - -/** - * Scroll the framebuffer from one line - */ -void vga_t_scrollup(); - -/** - * Clear all char from the framebuffer - */ -void vga_t_clear(); - -- cgit v1.2.3