mirror of
https://github.com/cc65/cc65.git
synced 2025-02-08 11:31:34 +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) {
|
for (i = 0; i < 256; ++i) {
|
||||||
if ((i != '\n') && (i != '\r')) {
|
if ((i != '\n') && (i != '\r')) {
|
||||||
cputc(i);
|
cputc(i);
|
||||||
|
} else {
|
||||||
|
cputc(' ');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while(wherex() > 0) {
|
while(wherex() > 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user