[Teton] Just print a simple promp on the screen.

This commit is contained in:
Drew Galbraith 2023-11-26 11:29:15 -08:00
parent 2bc64b045c
commit 7f2b01438d
1 changed files with 1 additions and 4 deletions

View File

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