12 lines
179 B
C
12 lines
179 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;
|
|
}
|