summaryrefslogtreecommitdiff
path: root/kernel/src/tty/term.c
diff options
context:
space:
mode:
authorTyler Murphy <=>2023-07-17 00:09:26 -0400
committerTyler Murphy <=>2023-07-17 00:09:26 -0400
commite6bec1afcd1c351c13db821a4bb5e899a6c37901 (patch)
tree132f66efcf1657cb4a735af9cb8c264661549dd3 /kernel/src/tty/term.c
parentformat .env (diff)
downloadfinix-e6bec1afcd1c351c13db821a4bb5e899a6c37901.tar.gz
finix-e6bec1afcd1c351c13db821a4bb5e899a6c37901.tar.bz2
finix-e6bec1afcd1c351c13db821a4bb5e899a6c37901.zip
paging
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();