fernly: Initial commit

This is an initial commit of the code.  It just does prints "Hello, world!"
This commit is contained in:
Sean Cross 2014-06-12 12:48:10 +08:00
commit 685824f56e
12 changed files with 398 additions and 0 deletions

9
include/serial.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef __UART_H__
#define __UART_H__
#include <stdint.h>
int uart_putc(uint8_t c);
int uart_puts(char *s);
#endif /* __UART_H__ */