misc/kforth: Start command processing.

This commit is contained in:
2018-02-24 22:35:58 -08:00
parent 0a010e4527
commit 14dc525084
15 changed files with 439 additions and 49 deletions

View File

@@ -25,6 +25,9 @@ Console::rdbuf(char *buf, size_t len, bool stopat, char stopch)
while (n < len) {
ch = this->rdch();
if (ch == 0x04) {
break;
}
if (stopat && stopch == ch) {
break;