[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

@ -41,7 +41,10 @@ uint64_t main(uint64_t init_port) {
psf.DumpHeader();
Console console(fbuf, psf);
console.WriteString("Hello World!");
console.WriteString("Hello World!\n");
for (uint8_t i = 0x20; i < 0x7E; i++) {
console.WriteChar(i);
}
// 3. Write a line to the screen.