From d192b15ee05b6d79c1503eb296fcab693a05dced Mon Sep 17 00:00:00 2001 From: dzwdz Date: Mon, 20 Sep 2021 20:32:58 +0200 Subject: create a few specialized panic()s thanks to this i can tell which ones are placeholders, and which ones should stay --- src/kernel/arch/i386/boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/kernel/arch/i386/boot.c') diff --git a/src/kernel/arch/i386/boot.c b/src/kernel/arch/i386/boot.c index 57f8ff5..94eefd6 100644 --- a/src/kernel/arch/i386/boot.c +++ b/src/kernel/arch/i386/boot.c @@ -19,7 +19,7 @@ void kmain_early(struct multiboot_info *multiboot) { struct multiboot_mod *module = &multiboot->mods[0]; if (multiboot->mods_count < 1) { tty_const("can't find init! "); - panic(); + panic_invalid_state(); // no init } info.init.at = module->start; info.init.size = module->end - module->start; -- cgit v1.2.3