1

implement a scrollback buffer

This commit is contained in:
churl
2022-05-09 16:19:59 +02:00
parent b5a66f769e
commit 6f6301d5d0
7 changed files with 229 additions and 17 deletions

View File

@ -21,7 +21,7 @@ void waitForReturn() {
Key key;
do {
key = kb.key_hit();
} while (key.ascii() != '\n');
} while ((char)key != '\n');
}
void heap_demo() {