added some files for MSP430X I/O

This commit is contained in:
joxe 2010-08-24 16:23:20 +00:00
parent ef880ddf1f
commit c0549cad3d
8 changed files with 585 additions and 4 deletions

View file

@ -0,0 +1,9 @@
#include "dev/uart0.h"
#include <stdio.h>
int
putchar(int c)
{
uart0_writeb((char)c);
return c;
}