Split IOAPICRedirectEntry

This commit is contained in:
Alex
2022-10-25 02:43:47 +03:00
parent 7b324f020f
commit b66e8fb4f8

View File

@ -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;