From e6bec1afcd1c351c13db821a4bb5e899a6c37901 Mon Sep 17 00:00:00 2001 From: Tyler Murphy <=> Date: Mon, 17 Jul 2023 00:09:26 -0400 Subject: paging --- kernel/src/tty/term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kernel/src/tty/term.c') diff --git a/kernel/src/tty/term.c b/kernel/src/tty/term.c index 231d38b..a7451d2 100644 --- a/kernel/src/tty/term.c +++ b/kernel/src/tty/term.c @@ -28,7 +28,7 @@ static void term_clear_line(int y) { void term_init (void) { x = 0; y = 0; - front = (uint16_t*) 0xb8000; + front = (uint16_t*) 0xC03FF000; term_setfg(VGA_WHITE); term_setbg(VGA_BLACK); term_clear(); -- cgit v1.2.3-freya