Break console io example out into own app

This commit is contained in:
Toby Jaffey 2025-12-08 10:35:42 +00:00
parent 40e8795f3f
commit 274f347d90
5 changed files with 44 additions and 10 deletions

View file

@ -5,15 +5,5 @@ void main(void) {
for (int i=0;i<10;i++) {
printd(i);
}
#if 0
uint32_t c;
while(c = getc()) {
if (c != 0xFFFFFFFF) {
print("Got: ");
printx(c);
println("");
}
}
#endif
}