From b842e2d8e09189d527006ca5b3dec58128afe953 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 24 Feb 2024 10:37:20 +0100 Subject: Kernel: :boom: Fixing stuff due to misguided efforts. Signed-off-by: Amlal El Mahrouss --- Private/Source/KernelCheck.cxx | 2 +- Private/Source/KernelMain.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'Private/Source') diff --git a/Private/Source/KernelCheck.cxx b/Private/Source/KernelCheck.cxx index 4fc24918..6ce4f4fa 100644 --- a/Private/Source/KernelCheck.cxx +++ b/Private/Source/KernelCheck.cxx @@ -25,7 +25,7 @@ extern "C" [[noreturn]] void ke_wait_for_debugger() { namespace HCore { void ke_stop(const HCore::Int &id) { kcout << "*** STOP *** \r\n"; - kcout << "*** HCoreKrnl.exe has trigerred a runtime stop. *** \r\n"; + kcout << "*** HCoreKrnl.dll has trigerred a runtime stop. *** \r\n"; switch (id) { case RUNTIME_CHECK_PROCESS: { diff --git a/Private/Source/KernelMain.cxx b/Private/Source/KernelMain.cxx index 6050c95f..e1fba478 100644 --- a/Private/Source/KernelMain.cxx +++ b/Private/Source/KernelMain.cxx @@ -35,7 +35,7 @@ EXTERN_C void RuntimeMain( HCore::IFilesystemManager::Mount(new HCore::NewFilesystemManager()); // Open file from first hard-drive. - HCore::PEFLoader img("A:/System/HCoreShell.exe"); + HCore::PEFLoader img("A:/System/HCoreServer.exe"); /// Run the shell. if (!HCore::Utils::execute_from_image(img)) { @@ -43,6 +43,6 @@ EXTERN_C void RuntimeMain( } } else { HCore::kcout << "HCoreKrnl: Setup is starting...\n"; - HCore::kcout << "HCoreKrnl: Mounting drive A:...\n"; + HCore::kcout << "HCoreKrnl: Mounting drive A: ...\n"; } } -- cgit v1.2.3