git-svn-id: https://spexeah.com:8443/svn/Asuro@405 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
parent
2601ec1516
commit
2686b393dc
BIN
bin/kernel.bin
BIN
bin/kernel.bin
Binary file not shown.
Binary file not shown.
BIN
lib/E1000.ppu
BIN
lib/E1000.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.
@ -380,10 +380,11 @@ procedure fire(); interrupt;
|
||||
var
|
||||
status : uint32;
|
||||
begin
|
||||
CLI;
|
||||
status:= readCommand($0C);
|
||||
console.outputln('E1000 Driver', 'Interrupt Fired.');
|
||||
console.output('E1000 Driver', 'Int Status: ');
|
||||
console.writehexln(status);
|
||||
//console.outputln('E1000 Driver', 'Interrupt Fired.');
|
||||
//console.output('E1000 Driver', 'Int Status: ');
|
||||
//console.writehexln(status);
|
||||
if (status AND $04) > 0 then begin
|
||||
startLink();
|
||||
end else if (Status AND $10) > 0 then begin
|
||||
@ -391,6 +392,8 @@ begin
|
||||
end else if (Status AND $80) > 0 then begin
|
||||
handleReceive();
|
||||
end;
|
||||
outb($20, $20);
|
||||
outb($A0, $20);
|
||||
end;
|
||||
|
||||
procedure console_command_mac(params : PParamList);
|
||||
|
Loading…
x
Reference in New Issue
Block a user