10 lines
103 B
C
10 lines
103 B
C
#include "dev/uart0.h"
|
|
#include <stdio.h>
|
|
|
|
int
|
|
putchar(int c)
|
|
{
|
|
uart0_writeb((char)c);
|
|
return c;
|
|
}
|