[Teton] Print out every character into the framebuffer as a test.

This commit is contained in:
Drew Galbraith 2023-11-22 08:56:26 -08:00
parent afdb024c36
commit 2df1f6c006
3 changed files with 25 additions and 3 deletions

View file

@ -20,4 +20,7 @@ class Console {
Framebuffer& framebuf_;
Psf& psf_;
uint64_t cursor_pos_ = 0;
void CursorIncr();
void CursorReturn();
};