diff options
| author | amlal <amlal@el-mahrouss-logic.com> | 2024-03-09 19:12:48 +0000 |
|---|---|---|
| committer | amlal <amlal@el-mahrouss-logic.com> | 2024-03-09 19:12:48 +0000 |
| commit | 028d7057402051f809bbafa27aa278769732c56b (patch) | |
| tree | c48ecab423f26deb28f3c2ad6818494b9c10ce75 /Private/NewBoot/BootKit | |
| parent | 6f3b9a6359c387766beb5c3be147a9f4f744cbd7 (diff) | |
Microkernel: See below.
- Moved most of GDT code to AMD64's Processor.hpp
- add hal_ category of functions.
Signed-off-by: amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/NewBoot/BootKit')
| -rw-r--r-- | Private/NewBoot/BootKit/Arch/AHCI.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Private/NewBoot/BootKit/Arch/AHCI.hxx b/Private/NewBoot/BootKit/Arch/AHCI.hxx index 32fe033c..f4e635c7 100644 --- a/Private/NewBoot/BootKit/Arch/AHCI.hxx +++ b/Private/NewBoot/BootKit/Arch/AHCI.hxx @@ -24,10 +24,10 @@ class BDeviceAHCI final { HCore::Boolean mErr{false}; HCore::Boolean mDetected{false}; - operator bool() { return !mErr; } + operator bool() { return !this->mErr; } }; - operator bool() { return Leak().mDetected; } + operator bool() { return this->Leak().mDetected; } BDeviceAHCI& Read(HCore::WideChar* Buf, const HCore::SizeT& SecCount); BDeviceAHCI& Write(HCore::WideChar* Buf, const HCore::SizeT& SecCount); |
