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

@ -34,6 +34,8 @@ private:
virtual void hide_cursor() override;
virtual void show_cursor() override;
virtual void scroll_up() override;
void clear_vga_row(u16 row);
explicit VGATextModeConsole(NonnullOwnPtr<Memory::Region>);