From: mrdudz Date: Sun, 11 Oct 2015 15:07:48 +0000 (+0200) Subject: print a space for 0x0a and 0x0d in the char matrix X-Git-Tag: V2.16~210^2~36 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=32397b9a2b7363c10ff9c46897a27c4e818137dc;p=cc65 print a space for 0x0a and 0x0d in the char matrix --- 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) {