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
commit 3676214a62
Notes: sideshowbarker 2024-07-19 18:39:59 +09:00
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)