Implemented a kinda broken tty

This commit is contained in:
Alex
2022-10-09 04:01:49 +03:00
parent e332fc57e0
commit 7c4d43fec3
11 changed files with 496 additions and 133 deletions

View File

@ -396,9 +396,9 @@ namespace Memory
/**
* @brief Construct a new Virtual object
*
* @param Table Page table
* @param Table Page table. If null, it will use the current page table.
*/
Virtual(PageTable *Table);
Virtual(PageTable *Table = nullptr);
/**
* @brief Destroy the Virtual object
*