From 84332707f1df86c25c1f94883044c5e8fe2e20a3 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Tue, 22 Mar 2022 13:43:54 -0500 Subject: arch: i386: refactor the system call API The x86 system call/interrupt handlers should be refactored to be more readable. Signed-off-by: Danny Holman --- arch/i386/kernel/tty.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'arch/i386/kernel/tty.c') diff --git a/arch/i386/kernel/tty.c b/arch/i386/kernel/tty.c index f929408..1e2e6b5 100644 --- a/arch/i386/kernel/tty.c +++ b/arch/i386/kernel/tty.c @@ -6,8 +6,7 @@ static const size_t VGA_WIDTH = 80; static const size_t VGA_HEIGHT = 25; -//static uint16_t *const VGA_MEMORY = (uint16_t*)0xC03FF000; -static uint16_t *const VGA_MEMORY = (uint16_t*)0xB8000; +static uint16_t *const VGA_MEMORY = (uint16_t*)0xC03FF000; static size_t terminal_row; static size_t terminal_column; -- cgit v1.2.3