mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
print a space for 0x0a and 0x0d in the char matrix
This commit is contained in:
parent
70ed96d06d
commit
32397b9a2b
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user