Do not map newline to carriage return and newline.

This commit is contained in:
Jeremy Soller
2019-12-30 10:56:19 -07:00
parent a9339a8204
commit f21b8b6a44
2 changed files with 0 additions and 2 deletions

View File

@ -10,7 +10,6 @@
int putchar(int c) {
unsigned char byte = (unsigned char)c;
if (byte == '\n') putchar('\r');
#ifdef SERIAL_DEBUGGER
SBUF = byte;
#endif

View File

@ -10,7 +10,6 @@
int putchar(int c) {
unsigned char byte = (unsigned char)c;
if (byte == '\n') putchar('\r');
#ifdef SERIAL_DEBUGGER
SBUF = byte;
#endif