diff options
Diffstat (limited to 'console.c')
-rw-r--r-- | console.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ static void cons_putc(int c) { int crtport = 0x3d4; // io port of CGA - uint16_t *crt = (uint16_t *) 0xB8000; // base of CGA memory + ushort *crt = (ushort *) 0xB8000; // base of CGA memory int ind; if(panicked){ |