Kernel: TTY now supports CSI s and u

These are commonly supported values to save and load cursor
position
This commit is contained in:
Bananymous
2023-06-05 18:19:13 +03:00
parent efb355c7be
commit cf88142856
2 changed files with 11 additions and 0 deletions

View File

@@ -84,6 +84,9 @@ namespace Kernel
uint32_t m_width { 0 };
uint32_t m_height { 0 };
uint32_t m_saved_row { 0 };
uint32_t m_saved_column { 0 };
uint32_t m_row { 0 };
uint32_t m_column { 0 };
Cell* m_buffer { nullptr };