From 7f2b01438d386420176783bcecdce19023f8480a Mon Sep 17 00:00:00 2001 From: Drew Galbraith Date: Sun, 26 Nov 2023 11:29:15 -0800 Subject: [PATCH] [Teton] Just print a simple promp on the screen. --- sys/teton/teton.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/sys/teton/teton.cpp b/sys/teton/teton.cpp index 0ea7f94..e02254e 100644 --- a/sys/teton/teton.cpp +++ b/sys/teton/teton.cpp @@ -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();