1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 12:07:45 +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

@ -63,6 +63,8 @@ protected:
virtual void hide_cursor() = 0;
virtual void show_cursor() = 0;
virtual void scroll_up() = 0;
Console(size_t width, size_t height)
: m_width(width)
, m_height(height)