i686 now compiles (but not booting)

This commit is contained in:
Alex
2022-10-10 19:55:52 +03:00
parent 11d77f4b2b
commit 9b7c1fb369
4 changed files with 332 additions and 4 deletions

View File

@ -7,9 +7,9 @@ namespace InterruptDescriptorTable
{
typedef enum _InterruptDescriptorTableFlags
{
FlagGate_TASK = 0b0101,
FlagGate_16BIT_INT = 0b0110,
FlagGate_16BIT_TRAP = 0b0111,
FlagGate_TASK = 0b101,
FlagGate_16BIT_INT = 0b110,
FlagGate_16BIT_TRAP = 0b111,
FlagGate_32BIT_INT = 0b1110,
FlagGate_32BIT_TRAP = 0b1111,
FlagGate_RING0 = 0b0,