From 8d126a6dfdc8b769409bd4cc33f395f462162679 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Tue, 2 Sep 2025 03:16:38 +0200 Subject: [PATCH] Add boot message about how to exit qemu --- kern/start.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kern/start.c b/kern/start.c index 0ac35a6..0e4b264 100644 --- a/kern/start.c +++ b/kern/start.c @@ -57,6 +57,7 @@ void start() { else PANIC("Some cores seem to have been enumerated incorrectly!\n"); + kprintf("To exit qemu, press CTRL+a followed by x\n"); spin_unlock(&sl); }