diff --git a/Asuro.iso b/Asuro.iso index c17c1743..87469ea3 100644 Binary files a/Asuro.iso and b/Asuro.iso differ diff --git a/bin/kernel.bin b/bin/kernel.bin index 5feeeba7..44d4d5a6 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 5feeeba7..44d4d5a6 100755 Binary files a/iso/boot/asuro.bin and b/iso/boot/asuro.bin differ diff --git a/lib/arp.ppu b/lib/arp.ppu index 119ac7a6..e2baf4a3 100644 Binary files a/lib/arp.ppu and b/lib/arp.ppu differ diff --git a/lib/asuro.ppu b/lib/asuro.ppu index 00c9f99b..42571ce3 100644 Binary files a/lib/asuro.ppu and b/lib/asuro.ppu differ diff --git a/lib/eth2.ppu b/lib/eth2.ppu index 9507c305..51de1e0c 100644 Binary files a/lib/eth2.ppu and b/lib/eth2.ppu differ diff --git a/lib/ipv4.ppu b/lib/ipv4.ppu index edc864a6..84da8a75 100644 Binary files a/lib/ipv4.ppu and b/lib/ipv4.ppu differ diff --git a/lib/libpconsole.a b/lib/libpconsole.a index 9d846c85..1ad5249d 100644 Binary files a/lib/libpconsole.a and b/lib/libpconsole.a differ diff --git a/lib/libpmultiboot.a b/lib/libpmultiboot.a index 6d9f9b3f..f57b0fbd 100644 Binary files a/lib/libpmultiboot.a and b/lib/libpmultiboot.a differ diff --git a/lib/libpsystem.a b/lib/libpsystem.a index 91131f74..04adbff4 100644 Binary files a/lib/libpsystem.a and b/lib/libpsystem.a differ diff --git a/lib/shell.ppu b/lib/shell.ppu index d2e44fb4..f39e4b6f 100644 Binary files a/lib/shell.ppu and b/lib/shell.ppu differ diff --git a/lib/terminal.ppu b/lib/terminal.ppu index be43032c..8c69558c 100644 Binary files a/lib/terminal.ppu and b/lib/terminal.ppu differ diff --git a/src/driver/net/l2/eth2.pas b/src/driver/net/l2/eth2.pas index ef877cbf..b12b51bc 100644 --- a/src/driver/net/l2/eth2.pas +++ b/src/driver/net/l2/eth2.pas @@ -35,7 +35,7 @@ var begin push_trace('eth2.recv'); - writeToLogLn('L2: eth2.recv'); + writeToLogLn(' L2: eth2.recv'); //console.outputln('net.eth2', 'RECV.'); buf:= puint8(p_data); diff --git a/src/driver/net/l3/arp.pas b/src/driver/net/l3/arp.pas index f240f428..37756e12 100644 --- a/src/driver/net/l3/arp.pas +++ b/src/driver/net/l3/arp.pas @@ -70,7 +70,7 @@ var begin push_trace('arp.recv'); - writeToLogLn('L3: arp.recv'); + writeToLogLn(' L3: arp.recv'); { Get our converted Header } Header:= PARPHeader(p_data); AHeader.Hardware_Type:= (Header^.Hardware_Type_Hi SHL 8) + Header^.Hardware_Type_Lo; @@ -84,31 +84,31 @@ begin copyIPv4(@Header^.Destination_Protocol[0], @AHeader.Destination_Protocol[0]); case AHeader.Operation of $1:begin { ARP Request } - writeToLogLn(' arp.recv.arp.req'); + writeToLogLn(' arp.recv.arp.req'); end; $2:begin { ARP Reply } - writeToLogLn(' arp.recv.arp.rep'); + writeToLogLn(' arp.recv.arp.rep'); end; $3:begin { RARP Request } - writeToLogLn(' arp.recv.rarp.req'); + writeToLogLn(' arp.recv.rarp.req'); end; $4:begin { RARP Reply } - writeToLogLn(' arp.recv.rarp.rep'); + writeToLogLn(' arp.recv.rarp.rep'); end; $5:begin { DRARP Request } - writeToLogLn(' arp.recv.drarp.req'); + writeToLogLn(' arp.recv.drarp.req'); end; $6:begin { DRARP Reply } - writeToLogLn(' arp.recv.drarp.rep'); + writeToLogLn(' arp.recv.drarp.rep'); end; $7:begin { DRARP Error } - writeToLogLn(' arp.recv.drarp.err'); + writeToLogLn(' arp.recv.drarp.err'); end; $8:begin { InARP Request } - writeToLogLn(' arp.recv.inarp.req'); + writeToLogLn(' arp.recv.inarp.req'); end; $9:begin { InARP Reply } - writeToLogLn(' arp.recv.inarp.rep'); + writeToLogLn(' arp.recv.inarp.rep'); end; end; pop_trace; diff --git a/src/driver/net/l3/ipv4.pas b/src/driver/net/l3/ipv4.pas index deeb7673..6775d261 100644 --- a/src/driver/net/l3/ipv4.pas +++ b/src/driver/net/l3/ipv4.pas @@ -29,7 +29,7 @@ var begin push_trace('ipv4.recv'); - writeToLogLn('L3: ipv4.recv'); + writeToLogLn(' L3: ipv4.recv'); Header:= PIPV4Header(p_data); AHeader.version:= Header^.version; AHeader.header_len:= Header^.header_len; diff --git a/src/include/asuro.pas b/src/include/asuro.pas index b7973116..8373d31f 100644 --- a/src/include/asuro.pas +++ b/src/include/asuro.pas @@ -16,7 +16,7 @@ const NASM_VERSION = '2.10.09'; MAKE_VERSION = '3.81'; COMPILE_DATE = '10/05/18'; - COMPILE_TIME = '09:02:09'; + COMPILE_TIME = '09:07:10'; implementation