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

This commit is contained in:
kieron
2018-05-12 09:37:01 +00:00
parent 59a2c7567f
commit 49c16c09ce
12 changed files with 12 additions and 3 deletions

View File

@ -486,6 +486,15 @@ end;
procedure terminal_command_e1000status(Params : PParamList);
begin
console.writestringWND('Card: ', getTerminalHWND);
case card_type of
ctUnknown:console.writestringlnWND('Unknown', getTerminalHWND);
ctE1000:console.writestringlnWND('E1000 Generic', getTerminalHWND);
ct82577LM:console.writestringlnWND('82577LM', getTerminalHWND);
ctI217:console.writestringlnWND('I217', getTerminalHWND);
else console.writestringlnWND('UNIDENTIFIED!!!', getTerminalHWND);
end;
console.writestringWND('Status: ', getTerminalHWND);
console.writeHexLnWND(readStatus, getTerminalHWND);
@ -564,7 +573,7 @@ begin
load:= true;
if load then registercommandEx('E1000', @terminal_command_e1000status, 'E1000 Information.', true);
if load then registercommand('E1000', @terminal_command_e1000status, 'E1000 Information.');
if load then registercommand('MAC', @console_command_mac, 'Print MAC Address.');
end;

View File

@ -9,14 +9,14 @@ const
VERSION_SUB = '1';
REVISION = '677';
RELEASE = 'ia';
LINE_COUNT = 28115;
LINE_COUNT = 28124;
FILE_COUNT = 90;
DRIVER_COUNT = 32;
FPC_VERSION = '2.6.4';
NASM_VERSION = '2.10.09';
MAKE_VERSION = '3.81';
COMPILE_DATE = '12/05/18';
COMPILE_TIME = '10:33:59';
COMPILE_TIME = '10:36:59';
implementation