nes-proj/arch/cpu/arm/common/dbg-io/dbg-puts.c
George Oikonomou 4e3c7efa5f Fix code style
2018-03-30 15:23:49 +01:00

14 lines
419 B
C

/*---------------------------------------------------------------------------*/
#include <stdio.h>
#include <debug-uart.h>
#include <string.h>
/*---------------------------------------------------------------------------*/
int
puts(const char *str)
{
dbg_send_bytes((unsigned char *)str, strlen(str));
dbg_putchar('\n');
return 0;
}
/*---------------------------------------------------------------------------*/