git-svn-id: https://spexeah.com:8443/svn/Asuro@35 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron 2017-05-16 23:05:26 +00:00
parent 387365fa5d
commit a0b4639ba9
5 changed files with 16 additions and 1 deletions

BIN
Asuro.iso

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -8,8 +8,23 @@ uses
type
TIDT_Entry = bitpacked record
base_low : uint16;
selector : uint16;
always_0 : uint8;
flags : uint8;
base_high : uint16;
end;
PIDT_Entry = ^TIDT_Entry;
TIDT_Pointer = bitpacked record
limit : uint16;
base : uint32;
end;
PIDT_Pointer = ^TIDT_Pointer;
var
IDT : Array [0..255] of TIDT_Entry;
IDT_Pointer : TIDT_Pointer;
implementation