aboutsummaryrefslogtreecommitdiff
path: root/src/c/vga.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/c/vga.c')
-rw-r--r--src/c/vga.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/c/vga.c b/src/c/vga.c
index 84eb538..4e20745 100644
--- a/src/c/vga.c
+++ b/src/c/vga.c
@@ -27,7 +27,8 @@ void terminal_initialize(void)
terminal_row=0;
terminal_column=0;
set_color(VGA_COLOR_LIGHT_GREY, VGA_COLOR_BLACK);
- terminal_buffer=(uint16_t*) 0xB8000;
+ //terminal_buffer=(uint16_t*) 0xC00B8000;
+ terminal_buffer=(uint16_t*) 0xD0000000;
for(size_t y=0;y<VGA_HEIGHT;y++)
{
for(size_t x=0;x<VGA_WIDTH;x++)