From 77bf7cab39fef40797e8832aaef91abbdf0098f5 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 23 Mar 2024 00:59:31 +0100 Subject: Kernel and Bootloader: See below. Kernel: Add kPefArchPowerPC type. Kernel: Working on NewFS support for NewKernel. Kernel: Cleaned-up DriveManager. Kernel: Use kernel mouse on install mode. Bootloader: Refactor and cleanup. FirmwareKit: Fix EPM header. Signed-off-by: Amlal El Mahrouss --- Private/Builtins/PS2/PS2MouseInterface.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Private/Builtins') diff --git a/Private/Builtins/PS2/PS2MouseInterface.hxx b/Private/Builtins/PS2/PS2MouseInterface.hxx index 682151e9..f37d294e 100644 --- a/Private/Builtins/PS2/PS2MouseInterface.hxx +++ b/Private/Builtins/PS2/PS2MouseInterface.hxx @@ -28,7 +28,7 @@ class PS2MouseInterface final { public: Void Init() noexcept { - HCore::kcout << "HCoreKrnl.exe: Enabling PS/2 mouse...\r\n"; + HCore::kcout << "NewKernel.exe: Enabling PS/2 mouse...\r\n"; this->Write(0xFF); @@ -54,7 +54,7 @@ class PS2MouseInterface final { this->Write(0xF4); auto f4Dat = this->Read(); - HCore::kcout << "HCoreKrnl.exe: PS/2 mouse is OK: " << hex_number(f6Dat); + HCore::kcout << "NewKernel.exe: PS/2 mouse is OK: " << hex_number(f6Dat); HCore::kcout << ", " << hex_number(f4Dat) << end_line(); } @@ -64,14 +64,14 @@ class PS2MouseInterface final { while (timeout) { if ((HAL::In8(0x64) & 0x1)) { - HCore::kcout << "HCoreKrnl.exe: Wait: OK\r\n"; + HCore::kcout << "NewKernel.exe: Wait: OK\r\n"; return true; } --timeout; } // wait until we can read - HCore::kcout << "HCoreKrnl.exe: Wait: Timeout\r\n"; + HCore::kcout << "NewKernel.exe: Wait: Timeout\r\n"; // return the ack bit. return false; } @@ -81,14 +81,14 @@ class PS2MouseInterface final { while (timeout) { if ((HAL::In8(0x64) & 0b10) == 0) { - HCore::kcout << "HCoreKrnl.exe: Wait: OK\r\n"; + HCore::kcout << "NewKernel.exe: Wait: OK\r\n"; return true; } --timeout; } // wait until we can read - HCore::kcout << "HCoreKrnl.exe: Wait: Timeout\r\n"; + HCore::kcout << "NewKernel.exe: Wait: Timeout\r\n"; // return the ack bit. return false; } -- cgit v1.2.3