From 3186c55451c38cbb032576fc5539cd89974d39c0 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Sun, 29 Aug 2021 13:23:02 +0200 Subject: [PATCH] Cleanup --- drivers/vga.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/drivers/vga.c b/drivers/vga.c index 545d71f..959b491 100644 --- a/drivers/vga.c +++ b/drivers/vga.c @@ -3,13 +3,6 @@ #include "../kernel/io.h" #include "../lib/str.h" -// Memory -#define VGA_ADDRESS (char*)0xb8000 -#define VGA_ADDRESS_MAX (char*)0xb8fa0 - -#define MAX_ROWS 25 -#define MAX_COLS 80 - static unsigned int cursor_row = 0; static unsigned int cursor_col = 0;