From b66e8fb4f81249712f87ec3b3f28c144419ef32d Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 25 Oct 2022 02:43:47 +0300 Subject: [PATCH] Split IOAPICRedirectEntry --- Architecture/amd64/cpu/apic.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Architecture/amd64/cpu/apic.hpp b/Architecture/amd64/cpu/apic.hpp index 2795853..48a574c 100644 --- a/Architecture/amd64/cpu/apic.hpp +++ b/Architecture/amd64/cpu/apic.hpp @@ -275,6 +275,11 @@ namespace APIC /** @brief Destination */ uint64_t DestinationID : 8; }; + struct + { + uint64_t Low; + uint64_t High; + } split; uint64_t raw; } __attribute__((packed)) IOAPICRedirectEntry;