diff --git a/Asuro.iso b/Asuro.iso index 54cb2584..98ac390b 100644 Binary files a/Asuro.iso and b/Asuro.iso differ diff --git a/bin/kernel.bin b/bin/kernel.bin index 0c4001af..90a27603 100755 Binary files a/bin/kernel.bin and b/bin/kernel.bin differ diff --git a/iso/boot/asuro.bin b/iso/boot/asuro.bin index 0c4001af..90a27603 100755 Binary files a/iso/boot/asuro.bin and b/iso/boot/asuro.bin differ diff --git a/lib/E1000.ppu b/lib/E1000.ppu index 5e5d3813..ad4336a2 100644 Binary files a/lib/E1000.ppu and b/lib/E1000.ppu differ diff --git a/lib/asuro.ppu b/lib/asuro.ppu index 67886ee4..99cc5b13 100644 Binary files a/lib/asuro.ppu and b/lib/asuro.ppu differ diff --git a/lib/libpconsole.a b/lib/libpconsole.a index de2c1f0e..657935f8 100644 Binary files a/lib/libpconsole.a and b/lib/libpconsole.a differ diff --git a/lib/libpmultiboot.a b/lib/libpmultiboot.a index 8f229af9..17b09bcb 100644 Binary files a/lib/libpmultiboot.a and b/lib/libpmultiboot.a differ diff --git a/lib/libpsystem.a b/lib/libpsystem.a index 64edbb38..6354360e 100644 Binary files a/lib/libpsystem.a and b/lib/libpsystem.a differ diff --git a/lib/terminal.ppu b/lib/terminal.ppu index 10ee6608..79fefb79 100644 Binary files a/lib/terminal.ppu and b/lib/terminal.ppu differ diff --git a/src/driver/netdev/E1000.pas b/src/driver/netdev/E1000.pas index 56e7891c..16cf065b 100644 --- a/src/driver/netdev/E1000.pas +++ b/src/driver/netdev/E1000.pas @@ -533,7 +533,7 @@ begin load:= true; - if load then registercommand('E1000', @console_command_sendtest, 'Test sending a ARP Request.'); + if load then registercommandEx('E1000', @console_command_sendtest, 'Test sending a ARP Request.', true); if load then registercommand('MAC', @console_command_mac, 'Print MAC Address.'); end; diff --git a/src/include/asuro.pas b/src/include/asuro.pas index 64d053f9..fadbb0fb 100644 --- a/src/include/asuro.pas +++ b/src/include/asuro.pas @@ -3,11 +3,11 @@ unit asuro; interface const - VERSION = '1.0.0-649a'; + VERSION = '1.0.0-651a'; VERSION_MAJOR = '1'; VERSION_MINOR = '0'; VERSION_SUB = '0'; - REVISION = '649'; + REVISION = '651'; RELEASE = 'a'; implementation