ds
git-svn-id: https://spexeah.com:8443/svn/Asuro@140 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
parent
c5fc5e6fb4
commit
b2a11da422
BIN
lib/kernel.ppu
BIN
lib/kernel.ppu
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
lib/libpsystem.a
BIN
lib/libpsystem.a
Binary file not shown.
Binary file not shown.
@ -57,15 +57,15 @@ var
|
|||||||
begin
|
begin
|
||||||
console.writestringln('VMM: INIT BEGIN.');
|
console.writestringln('VMM: INIT BEGIN.');
|
||||||
PageDirectory:= load_current_page_directory;
|
PageDirectory:= load_current_page_directory;
|
||||||
PageDirectory^[KERNEL_VIRTUAL_BASE + 1].Present:= True;
|
PageDirectory^[KERNEL_PAGE_NUMBER + 1].Present:= True;
|
||||||
PageDirectory^[KERNEL_VIRTUAL_BASE + 1].PageSize:= True;
|
PageDirectory^[KERNEL_PAGE_NUMBER + 1].PageSize:= True;
|
||||||
PageDirectory^[KERNEL_VIRTUAL_BASE + 1].Writable:= True;
|
PageDirectory^[KERNEL_PAGE_NUMBER + 1].Writable:= True;
|
||||||
PageDirectory^[KERNEL_VIRTUAL_BASE + 1].Address:= (1 SHL 22);
|
PageDirectory^[KERNEL_PAGE_NUMBER + 1].Address:= (1 SHL 22);
|
||||||
|
|
||||||
PageDirectory^[KERNEL_VIRTUAL_BASE + 2].Present:= True;
|
PageDirectory^[KERNEL_PAGE_NUMBER + 2].Present:= True;
|
||||||
PageDirectory^[KERNEL_VIRTUAL_BASE + 2].PageSize:= True;
|
PageDirectory^[KERNEL_PAGE_NUMBER + 2].PageSize:= True;
|
||||||
PageDirectory^[KERNEL_VIRTUAL_BASE + 2].Writable:= True;
|
PageDirectory^[KERNEL_PAGE_NUMBER + 2].Writable:= True;
|
||||||
PageDirectory^[KERNEL_VIRTUAL_BASE + 2].Address:= (2 SHL 22);
|
PageDirectory^[KERNEL_PAGE_NUMBER + 2].Address:= (2 SHL 22);
|
||||||
console.writestringln('VMM: INIT END.');
|
console.writestringln('VMM: INIT END.');
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user