diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-02-13 06:43:02 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-02-13 06:43:02 +0100 |
| commit | 79ad2556be55a61a41d5d849e396ad4b3a72a23e (patch) | |
| tree | f98fc03644e8233186b8b43bac7e125b3bda2de1 /dev/Kernel/HALKit/AMD64/HalAPICController.cc | |
| parent | e83cfb3dbdd121f6d76e70ff50155c16d6f90c46 (diff) | |
ADD: Much needed tweaks for Driver Manager, DMA, PIO ATA, and SATA.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/HALKit/AMD64/HalAPICController.cc')
| -rw-r--r-- | dev/Kernel/HALKit/AMD64/HalAPICController.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dev/Kernel/HALKit/AMD64/HalAPICController.cc b/dev/Kernel/HALKit/AMD64/HalAPICController.cc index 3e2e267a..c3ce5c1a 100644 --- a/dev/Kernel/HALKit/AMD64/HalAPICController.cc +++ b/dev/Kernel/HALKit/AMD64/HalAPICController.cc @@ -12,6 +12,11 @@ namespace Kernel::HAL { + APICController::APICController(VoidPtr base) + : fApic(base) + { + } + /// @brief Read from APIC controller. /// @param reg register. UInt32 APICController::Read(UInt32 reg) noexcept |
