diff --git a/Asuro.iso b/Asuro.iso index f355cbbb..8e48e2b0 100644 Binary files a/Asuro.iso and b/Asuro.iso differ diff --git a/bin/kernel.bin b/bin/kernel.bin index e0b738fe..2e63e109 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 e0b738fe..2e63e109 100755 Binary files a/iso/boot/asuro.bin and b/iso/boot/asuro.bin differ diff --git a/lib/asuro.ppu b/lib/asuro.ppu index a7e6a2d0..ac297450 100644 Binary files a/lib/asuro.ppu and b/lib/asuro.ppu differ diff --git a/lib/libpconsole.a b/lib/libpconsole.a index 968d4c54..0dafea66 100644 Binary files a/lib/libpconsole.a and b/lib/libpconsole.a differ diff --git a/lib/libpmultiboot.a b/lib/libpmultiboot.a index 7c62f468..ea30048a 100644 Binary files a/lib/libpmultiboot.a and b/lib/libpmultiboot.a differ diff --git a/lib/libpsystem.a b/lib/libpsystem.a index a32e45ba..4d40613d 100644 Binary files a/lib/libpsystem.a and b/lib/libpsystem.a differ diff --git a/lib/terminal.ppu b/lib/terminal.ppu index 7a4bb4b8..a1cd835b 100644 Binary files a/lib/terminal.ppu and b/lib/terminal.ppu differ diff --git a/src/include/asuro.pas b/src/include/asuro.pas index 8fb9d73c..3ce26fd0 100644 --- a/src/include/asuro.pas +++ b/src/include/asuro.pas @@ -3,11 +3,11 @@ unit asuro; interface const - VERSION = '1.0.0-583a'; + VERSION = '1.0.0-584a'; VERSION_MAJOR = '1'; VERSION_MINOR = '0'; VERSION_SUB = '0'; - REVISION = '583'; + REVISION = '584'; RELEASE = 'a'; implementation diff --git a/src/terminal.pas b/src/terminal.pas index 383c9b28..8824bed6 100644 --- a/src/terminal.pas +++ b/src/terminal.pas @@ -374,16 +374,16 @@ end; procedure SendSerial(Params : PParamList); begin Serial.init(COM1); - Serial.Send(uint8('H'), COM1, 1000); - Serial.Send(uint8('E'), COM1, 1000); - Serial.Send(uint8('L'), COM1, 1000); - Serial.Send(uint8('L'), COM1, 1000); - Serial.Send(uint8('O'), COM1, 1000); - Serial.Send(uint8('W'), COM1, 1000); - Serial.Send(uint8('O'), COM1, 1000); - Serial.Send(uint8('R'), COM1, 1000); - Serial.Send(uint8('L'), COM1, 1000); - Serial.Send(uint8('D'), COM1, 1000); + Serial.Send(uint8('H'), COM1, 100000); + Serial.Send(uint8('E'), COM1, 100000); + Serial.Send(uint8('L'), COM1, 100000); + Serial.Send(uint8('L'), COM1, 100000); + Serial.Send(uint8('O'), COM1, 100000); + Serial.Send(uint8('W'), COM1, 100000); + Serial.Send(uint8('O'), COM1, 100000); + Serial.Send(uint8('R'), COM1, 100000); + Serial.Send(uint8('L'), COM1, 100000); + Serial.Send(uint8('D'), COM1, 100000); end; procedure init;