git-svn-id: https://spexeah.com:8443/svn/Asuro@142 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron
2017-05-20 16:00:23 +00:00
parent 96e646091b
commit 805f20ca31
8 changed files with 48 additions and 40 deletions

View File

@ -54,12 +54,16 @@ begin
pmemorymanager.init();
vmemorymanager.init();
//
vmemorymanager.new_page(0);
pint:= puint32(0);
console.writestringln('Writing 1234 to Logical Address $00000000');
pint^:= 1234;
if pint^ = 1234 then console.writestringln('Read 1234 back from Logical Address $00000000!!!');
if pint^ = 1234 then begin
console.writestringln('Read 1234 back from Logical Address $00000000!!!');
end;
while true do begin end;
//scheduler.init();