Renamed enums

This commit is contained in:
Alex 2022-10-25 19:16:45 +03:00
parent 23f980f010
commit e489d49917
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -698,7 +698,7 @@ namespace CPU
MSR_CR_PAT_RESET = 0x0007040600070406ULL MSR_CR_PAT_RESET = 0x0007040600070406ULL
}; };
typedef enum enum ISRExceptions
{ {
DivideByZero = 0x0, DivideByZero = 0x0,
Debug = 0x1, Debug = 0x1,
@ -721,9 +721,9 @@ namespace CPU
SIMDFloatingPoint = 0x13, SIMDFloatingPoint = 0x13,
Virtualization = 0x14, Virtualization = 0x14,
Security = 0x1e Security = 0x1e
} ISRExceptions; };
typedef enum enum CPUInterrupts
{ {
/* ISR */ /* ISR */
@ -992,7 +992,7 @@ namespace CPU
IRQ221 = 0xfd, IRQ221 = 0xfd,
IRQ222 = 0xfe, IRQ222 = 0xfe,
IRQ223 = 0xff, IRQ223 = 0xff,
} Interrupts; };
/** /**
* @brief MSR_APIC_BASE structure * @brief MSR_APIC_BASE structure