From 32397b9a2b7363c10ff9c46897a27c4e818137dc Mon Sep 17 00:00:00 2001 From: mrdudz Date: Sun, 11 Oct 2015 17:07:48 +0200 Subject: [PATCH] print a space for 0x0a and 0x0d in the char matrix --- testcode/lib/conio.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testcode/lib/conio.c b/testcode/lib/conio.c index 3e4b4539f..a7a83594e 100644 --- a/testcode/lib/conio.c +++ b/testcode/lib/conio.c @@ -58,6 +58,8 @@ void main(void) for (i = 0; i < 256; ++i) { if ((i != '\n') && (i != '\r')) { cputc(i); + } else { + cputc(' '); } } while(wherex() > 0) { -- 2.39.5