From 348c3b7eadd16623f1e19c4c5842f2943b954973 Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Mon, 11 Mar 2019 18:17:49 +0100 Subject: [PATCH] Step 1 : StartPanic is the real problem --- kaleid/kernel/ke/panic.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kaleid/kernel/ke/panic.c b/kaleid/kernel/ke/panic.c index cbb9ac0..4e8c7d6 100644 --- a/kaleid/kernel/ke/panic.c +++ b/kaleid/kernel/ke/panic.c @@ -50,6 +50,7 @@ noreturn void StartPanic(const char *fmt, ...) va_list ap; DisableIRQs(); + *vga = ('B') | (0x0F << 8); if (GetCurProc()) _SetCurProc(NULL); if (GetStdOut() == NULL) CrashSystem();