1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:58:11 +00:00

Kernel: Implement scrolling critical messages in framebuffer console

This commit is contained in:
DaftMouse 2023-08-30 15:17:46 -03:00 committed by Andrew Kaster
parent df2bc8187c
commit 6f7f0b3a8c
5 changed files with 42 additions and 4 deletions

View file

@ -112,6 +112,11 @@ void VGATextModeConsole::clear(size_t x, size_t y, size_t length)
buf[index] = 0x0720;
}
}
void VGATextModeConsole::scroll_up()
{
}
void VGATextModeConsole::write(size_t x, size_t y, char ch, bool critical)
{
write(x, y, ch, m_default_background_color, m_default_foreground_color, critical);