summaryrefslogtreecommitdiff
path: root/kernel/src/tty/term.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--kernel/src/tty/term.c2
1 files changed, 1 insertions, 1 deletions
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();