git-svn-id: https://spexeah.com:8443/svn/Asuro@139 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron 2017-05-20 13:59:04 +00:00
parent 797c0f66fc
commit c5fc5e6fb4
8 changed files with 3 additions and 3 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.

View File

@ -56,7 +56,7 @@ begin
console.writestring(' ['); console.writestring(' [');
console.writehex(i SHL 22); console.writehex(i SHL 22);
console.writestring(' - '); console.writestring(' - ');
console.writehex(((i+1) SHL 22)-1); console.writehex(((i+1) SHL 22));
console.writestringln(']'); console.writestringln(']');
exit; exit;
end; end;

View File

@ -104,11 +104,11 @@ begin
console.writestring('- P:['); console.writestring('- P:[');
console.writeword(page_number SHL 22); console.writeword(page_number SHL 22);
console.writestring(' - '); console.writestring(' - ');
console.writehex(((page_number+1) SHL 22)-1); console.writehex(((page_number+1) SHL 22));
console.writestring(']-->B:['); console.writestring(']-->B:[');
console.writehex(block SHL 22); console.writehex(block SHL 22);
console.writestring(' - '); console.writestring(' - ');
console.writehex(((block+1) SHL 22)-1); console.writehex(((block+1) SHL 22));
console.writestringln(']'); console.writestringln(']');
end; end;
end; end;