diff --git a/Asuro.iso b/Asuro.iso index e5b205fb..5991f445 100644 Binary files a/Asuro.iso and b/Asuro.iso differ diff --git a/bin/kernel.bin b/bin/kernel.bin index cbf04a18..6675d26a 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 cbf04a18..6675d26a 100755 Binary files a/iso/boot/asuro.bin and b/iso/boot/asuro.bin differ diff --git a/lib/PCI.ppu b/lib/PCI.ppu index b712fafe..b7bb3e37 100644 Binary files a/lib/PCI.ppu and b/lib/PCI.ppu differ diff --git a/lib/keyboard.ppu b/lib/keyboard.ppu index 65fcf842..310f11e3 100644 Binary files a/lib/keyboard.ppu and b/lib/keyboard.ppu differ diff --git a/lib/libpconsole.a b/lib/libpconsole.a index 011405cc..f5895e2e 100644 Binary files a/lib/libpconsole.a and b/lib/libpconsole.a differ diff --git a/lib/libpmultiboot.a b/lib/libpmultiboot.a index 9584856e..748a3437 100644 Binary files a/lib/libpmultiboot.a and b/lib/libpmultiboot.a differ diff --git a/lib/libpsystem.a b/lib/libpsystem.a index 2206608e..9c211c02 100644 Binary files a/lib/libpsystem.a and b/lib/libpsystem.a differ diff --git a/lib/lmemorymanager.ppu b/lib/lmemorymanager.ppu index 91b1c7bd..caca6bfc 100644 Binary files a/lib/lmemorymanager.ppu and b/lib/lmemorymanager.ppu differ diff --git a/lib/mouse.ppu b/lib/mouse.ppu index 7fa14782..367f13ab 100644 Binary files a/lib/mouse.ppu and b/lib/mouse.ppu differ diff --git a/lib/terminal.ppu b/lib/terminal.ppu index 8311e057..705ed0a3 100644 Binary files a/lib/terminal.ppu and b/lib/terminal.ppu differ diff --git a/src/driver/PCI.pas b/src/driver/PCI.pas index 3c4f38ac..ee39fe72 100644 --- a/src/driver/PCI.pas +++ b/src/driver/PCI.pas @@ -213,14 +213,14 @@ var ii : uint16; iii : uint8; begin - console.writestringln('PCI: INIT BEGIN.') + console.writestringln('PCI: INIT BEGIN.'); //enumerate pci bus for ii:=0 to 256 do begin for i:=0 to 31 do begin check_device(ii, i, 0); end; end; - console.writestringln('PCI: INIT END.') + console.writestringln('PCI: INIT END.'); end; procedure loadConfig(bus : uint8; slot : uint8; func : uint8; offset : uint8);