FreeCalypso > hg > freecalypso-tools
view target-utils/libprintf/putchar.c @ 43:647a7bdba4be
target-utils/Makefile: install c139explore and pirexplore
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 26 Oct 2016 05:40:33 +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); }