1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-11 05:29:33 +00:00

print a space for 0x0a and 0x0d in the char matrix

This commit is contained in:
mrdudz 2015-10-11 17:07:48 +02:00
parent 70ed96d06d
commit 32397b9a2b

View File

@ -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) {