diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-24 09:36:47 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-24 09:36:47 +0100 |
| commit | c1c1c7cb8ec2518b746804ecc2be9e0613fe685f (patch) | |
| tree | 2c43f6637c9de551ad695a4d149dd66e0d6a18b7 /Private/Builtins/PS2 | |
| parent | 09383c793fe953da6441902b4f66b1382df46738 (diff) | |
Kernel: Add CRC32 check inside the kernel's heap,
Handover: Rename f_VendorTable to f_RsdPtr and f_SmBios.
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 | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Private/Builtins/PS2/PS2MouseInterface.hxx b/Private/Builtins/PS2/PS2MouseInterface.hxx index 5e964962..2be85af1 100644 --- a/Private/Builtins/PS2/PS2MouseInterface.hxx +++ b/Private/Builtins/PS2/PS2MouseInterface.hxx @@ -61,14 +61,12 @@ class PS2MouseInterface final { while (timeout) { if ((HAL::In8(0x64) & 0x1)) { - HCore::kcout << "NewKernel.exe: Wait: OK\r\n"; return true; } --timeout; } // wait until we can read - HCore::kcout << "NewKernel.exe: Wait: Timeout\r\n"; // return the ack bit. return false; } @@ -78,14 +76,12 @@ class PS2MouseInterface final { while (timeout) { if ((HAL::In8(0x64) & 0b10) == 0) { - HCore::kcout << "NewKernel.exe: Wait: OK\r\n"; return true; } --timeout; } // wait until we can read - HCore::kcout << "NewKernel.exe: Wait: Timeout\r\n"; // return the ack bit. return false; } |
