git-svn-id: https://spexeah.com:8443/svn/Asuro@284 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron 2017-10-27 08:42:51 +00:00
parent 2a8483b4a7
commit c00a18e974
8 changed files with 4 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.

Binary file not shown.

View File

@ -7,7 +7,8 @@ uses
PCI, PCI,
drivertypes, drivertypes,
pmemorymanager, pmemorymanager,
vmemorymanager; vmemorymanager,
util;
type type
POHCI_MMR = ^TOHCI_MMR; POHCI_MMR = ^TOHCI_MMR;
@ -84,9 +85,9 @@ begin
force_alloc_block(block, 0); force_alloc_block(block, 0);
map_page(block, block); map_page(block, block);
MMR:= POHCI_MMR(devices[i].address0); MMR:= POHCI_MMR(devices[i].address0);
MMR^.HcRevision:= 17; MMR^.HcRevision:= 200;
console.writestring('HcRevision? '); console.writestring('HcRevision? ');
console.writeintln(MMR^.HcRevision); console.writehexln(getByte(MMR^.HcRevision, 0));
end; end;
end; end;