1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:17:35 +00:00

Have Console::write() directly call vga_putch.

This commit is contained in:
Andreas Kling 2018-10-21 22:11:46 +02:00
parent a70bfb87d5
commit fc88368582
5 changed files with 18 additions and 23 deletions

View file

@ -13,6 +13,8 @@ public:
virtual ssize_t write(const byte* data, size_t size) override;
private:
void putChar(char);
byte m_rows { 25 };
byte m_columns { 80 };
byte m_cursorRow { 0 };