diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-16 21:46:29 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-16 21:46:29 +0100 |
| commit | a4d4de6913fb7dd54847b0e5a004c3100bc02459 (patch) | |
| tree | 4b7eba7d0bcc282f96db8725466ee403f95e35ec /Private/NewBoot | |
| parent | e8d46c98880ed3f33fc1760e8f3a99577fa31eb3 (diff) | |
HCR-14: Reworked page allocator for AMD64.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/NewBoot')
| -rw-r--r-- | Private/NewBoot/BootKit/Arch/AHCI.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Private/NewBoot/BootKit/Arch/AHCI.hxx b/Private/NewBoot/BootKit/Arch/AHCI.hxx index 2047c404..9505377b 100644 --- a/Private/NewBoot/BootKit/Arch/AHCI.hxx +++ b/Private/NewBoot/BootKit/Arch/AHCI.hxx @@ -17,14 +17,14 @@ class BDeviceAHCI final { HCORE_COPY_DEFAULT(BDeviceAHCI); struct AHCITraits final { - HCore::SizeT mBase{1024}; - HCore::Boolean mErr{false}; - HCore::Boolean mDetected{false}; + HCore::SizeT fBase{1024}; + HCore::Boolean fError{false}; + HCore::Boolean fDetected{false}; - operator bool() { return !this->mErr; } + operator bool() { return !this->fError; } }; - operator bool() { return this->Leak().mDetected; } + operator bool() { return this->Leak().fDetected; } BDeviceAHCI& Read(HCore::WideChar* Buf, const HCore::SizeT& SecCount); BDeviceAHCI& Write(HCore::WideChar* Buf, const HCore::SizeT& SecCount); |
