From 7017065d74ae2a031ae730e7d2a5585430d7f67b Mon Sep 17 00:00:00 2001 From: Kat Richey Date: Sat, 29 Oct 2022 10:05:51 -0500 Subject: [PATCH] VGA_MEMORY higher half relocation --- arch/i386/tty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/i386/tty.c b/arch/i386/tty.c index 8e017bb..a6e28fe 100755 --- a/arch/i386/tty.c +++ b/arch/i386/tty.c @@ -9,7 +9,7 @@ static const size_t VGA_WIDTH = 80; static const size_t VGA_HEIGHT = 24; -static uint16_t* const VGA_MEMORY = (uint16_t*) 0xB8000 ; +static uint16_t* const VGA_MEMORY = (uint16_t*) 0xC03FF000 ; static size_t term_row; static size_t term_col;