diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-23 00:59:31 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-23 01:04:00 +0100 |
| commit | 77bf7cab39fef40797e8832aaef91abbdf0098f5 (patch) | |
| tree | 157f6f82188c505f1333abf93aeda63b3373cf04 /Private/Builtins/PS2 | |
| parent | 954285b6c9553a047d0789707ad520c84099e74a (diff) | |
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 <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/Builtins/PS2')
| -rw-r--r-- | Private/Builtins/PS2/PS2MouseInterface.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
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; } |
