git-svn-id: https://spexeah.com:8443/svn/Asuro@305 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c

This commit is contained in:
kieron 2018-04-05 10:57:06 +00:00
parent b7ea41ab90
commit a770593820
7 changed files with 3 additions and 1 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

@ -69,6 +69,7 @@ begin
MMR:= POHCI_MMR(devices[i].address0);
end;
end;
loadOHCI:= true;
end;
function loadUHCI(ptr : void) : boolean;
@ -94,6 +95,7 @@ begin
console.writehexln(devices[i].prog_if);
end;
end;
loadUHCI:= true;
end;
procedure init;
@ -119,7 +121,7 @@ begin
drivermanagement.register_driver('USB-UHCI Driver', @UHCI_ID, @loadUHCI);
drivermanagement.register_driver('USB-OHCI Driver', @OHCI_ID, @loadOHCI);
console.writestringln('USB: INIT END.');
end;