diff --git a/Asuro.iso b/Asuro.iso
index 25c17155..7796ab73 100644
Binary files a/Asuro.iso and b/Asuro.iso differ
diff --git a/bin/kernel.bin b/bin/kernel.bin
index 53253897..26dcf6ae 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 53253897..26dcf6ae 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 af3f381f..3fd3c830 100644
Binary files a/lib/asuro.ppu and b/lib/asuro.ppu differ
diff --git a/lib/libpconsole.a b/lib/libpconsole.a
index 2b5525d9..fd404903 100644
Binary files a/lib/libpconsole.a and b/lib/libpconsole.a differ
diff --git a/lib/libpmultiboot.a b/lib/libpmultiboot.a
index 2b3fe4d4..16ea690f 100644
Binary files a/lib/libpmultiboot.a and b/lib/libpmultiboot.a differ
diff --git a/lib/libpsystem.a b/lib/libpsystem.a
index 0d645158..197f78e4 100644
Binary files a/lib/libpsystem.a and b/lib/libpsystem.a differ
diff --git a/lib/terminal.ppu b/lib/terminal.ppu
index bb0336e0..ac79b854 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 3ce26fd0..454fa6df 100644
--- a/src/include/asuro.pas
+++ b/src/include/asuro.pas
@@ -3,11 +3,11 @@ unit asuro;
 interface
  
 const
-     VERSION       = '1.0.0-584a';
+     VERSION       = '1.0.0-587a';
      VERSION_MAJOR = '1';
      VERSION_MINOR = '0';
      VERSION_SUB   = '0';
-     REVISION      = '584';
+     REVISION      = '587';
      RELEASE       = 'a';
  
 implementation
diff --git a/src/terminal.pas b/src/terminal.pas
index 89c9af07..0b926ed5 100644
--- a/src/terminal.pas
+++ b/src/terminal.pas
@@ -388,6 +388,8 @@ begin
     success:= success AND Serial.Send(uint8('R'), COM1, 100000);
     success:= success AND Serial.Send(uint8('L'), COM1, 100000);
     success:= success AND Serial.Send(uint8('D'), COM1, 100000);
+    success:= success AND Serial.Send(10, COM1, 100000);
+    success:= success AND Serial.Send(0, COM1, 100000);
     if success then begin
         console.writestringlnWND('Send Success!', TERMINAL_HWND);
     end else begin