1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:17:44 +00:00

Remove remains of the old "panel" task.

...and grow the console by 1 row! :^)
This commit is contained in:
Andreas Kling 2018-10-23 15:47:03 +02:00
parent d90d125dfe
commit 3676214a62
5 changed files with 4 additions and 53 deletions

View file

@ -10,8 +10,8 @@ PRIVATE BYTE current_attr = 0x07;
void vga_scroll_up()
{
memcpy(vga_mem, vga_mem + 160, 160 * 23);
memset(vga_mem + (160 * 23), 0, 160);
memcpy(vga_mem, vga_mem + 160, 160 * 24);
memset(vga_mem + (160 * 24), 0, 160);
}
void vga_putch_at(byte row, byte column, byte ch)