diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-09-01 11:21:55 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-09-01 11:21:55 +0200 |
| commit | 1af5efb5c96af6f3246c8eae42912b2fbcd7f006 (patch) | |
| tree | 9cf4cf8d7ed93eef0ff3daac211879cb9a961c81 /dev/ZKA/Sources/KernelCheck.cxx | |
| parent | e757bb6a90c98f53995e4828d68eba26a2327540 (diff) | |
Many bug fixes, and wip fixes.
RoadMap:
- Ring-3 switch [ Still gives GPF ]
- Make timer interrupt on non SMP profile.
- Work on SMP support, to offload tasks to other cores.
- Validate kernel and components (compiler, dlls, programs...)
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKA/Sources/KernelCheck.cxx')
| -rw-r--r-- | dev/ZKA/Sources/KernelCheck.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/ZKA/Sources/KernelCheck.cxx b/dev/ZKA/Sources/KernelCheck.cxx index db157601..4ef8a933 100644 --- a/dev/ZKA/Sources/KernelCheck.cxx +++ b/dev/ZKA/Sources/KernelCheck.cxx @@ -79,7 +79,7 @@ namespace Kernel break; } case RUNTIME_CHECK_BOOTSTRAP: { - CGDrawString("0x0000000A End of boot code, but nothing to continue.", start_y, x, panicTxt); + CGDrawString("0x0000000A End of boot code...", start_y, x, panicTxt); RecoveryFactory::Recover(); break; } @@ -125,7 +125,7 @@ namespace Kernel HardwareTimer timer(cMaxSeconds); timer.Wait(); - kcout << "newoskrnl: Shutting down computer...\r"; + kcout << "newoskrnl.dll: Shutting down computer...\r"; PowerFactoryInterface power(nullptr); power.Shutdown(); |
