git-svn-id: https://spexeah.com:8443/svn/Asuro@181 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron 2017-05-22 01:09:09 +00:00
parent 77a41c94f7
commit a283983d2a
34 changed files with 4 additions and 4 deletions

BIN
Asuro.iso

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -21,7 +21,7 @@ const
ISR_RING_3 = $EE;
type
TIDT_Entry = bitpacked record
TIDT_Entry = packed record
base_low : uint16;
selector : uint16;
always_0 : uint8;
@ -30,7 +30,7 @@ type
end;
PIDT_Entry = ^TIDT_Entry;
TIDT_Pointer = bitpacked record
TIDT_Pointer = packed record
limit : uint16;
base : uint32;
end;

View File

@ -188,7 +188,7 @@ var
cCR3 : uint32;
begin
console.writestringln('TSS: INIT BEGIN.')
console.writestringln('TSS: INIT BEGIN.');
ptrTaskStateSegment^.ss0:= $08;
ptrTaskStateSegment^.iomap:= sizeof(TTaskStateSegment)-1;
asm
@ -205,7 +205,7 @@ begin
mov AX, 40
ltr AX
end;
console.writestringln('TSS: INIT END.')
console.writestringln('TSS: INIT END.');
end;
end.