Added InterruptCommandRegisterHigh for future use

This commit is contained in:
Alex 2022-10-25 02:25:56 +03:00
parent 6af8c9c4ee
commit 31e26040da
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -166,6 +166,18 @@ namespace APIC
uint64_t raw;
} __attribute__((packed)) InterruptCommandRegisterLow;
typedef union
{
struct
{
/** @brief Reserved */
uint64_t Reserved0 : 24;
/** @brief Destination */
uint64_t Destination : 8;
};
uint64_t raw;
} __attribute__((packed)) InterruptCommandRegisterHigh;
typedef union
{
struct