Fixed value of pointer to video memory

This commit is contained in:
2021-04-12 15:52:03 -05:00
parent 2f7300fbf8
commit 8d784364f8

View File

@@ -28,7 +28,7 @@ struct cell_t
char bg : 4; char bg : 4;
}; };
struct cell_t *screen = 0xFFCB8000; struct cell_t *screen = (struct cell_t*)0xFF8B8000;
const size_t tab_width = 4; const size_t tab_width = 4;
const size_t line_width = 80; const size_t line_width = 80;