[platform] rename all of the dputc/dgetc routines to match the new platform_ debug interface

-just a simple rename
This commit is contained in:
Travis Geiselbrecht
2012-09-23 17:57:40 -07:00
parent f138f35a91
commit e307791ba2
8 changed files with 16 additions and 16 deletions

View File

@@ -27,12 +27,12 @@
#include <platform/armemu/memmap.h>
#include <platform/debug.h>
void _dputc(char c)
void platform_dputc(char c)
{
*REG8(DEBUG_STDOUT) = c;
}
int dgetc(char *c, bool wait)
int platform_dgetc(char *c, bool wait)
{
for (;;) {
int8_t result = (int8_t)*REG8(DEBUG_STDIN);