mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
Implement 'H' and 'J' escape sequences.
This commit is contained in:
parent
cc7e3519a6
commit
8289a5c93c
Notes:
sideshowbarker
2024-07-19 18:37:27 +09:00
Author: https://github.com/awesomekling
Commit: 8289a5c93c
5 changed files with 168 additions and 14 deletions
|
@ -15,6 +15,12 @@ void vga_scroll_up()
|
|||
memset(vga_mem + (160 * 24), 0, 160);
|
||||
}
|
||||
|
||||
void vga_clear()
|
||||
{
|
||||
InterruptDisabler disabler;
|
||||
memset(vga_mem, 0, 160 * 25);
|
||||
}
|
||||
|
||||
void vga_putch_at(byte row, byte column, byte ch)
|
||||
{
|
||||
word cur = (row * 160) + (column * 2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue