FreeCalypso > hg > freecalypso-tools
view target-utils/libprintf/putchar.c @ 736:7d1df6d831e4
libpwon: added -Pdtr and -Prts support for DUART28C
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 16 Sep 2020 03:40:51 +0000 |
parents | e7502631a0f9 |
children |
line wrap: on
line source
extern void serial_out(); void putchar(ch) { if (ch == '\n') serial_out('\r'); serial_out(ch); }