fernly/include/serial.h
Sean Cross 685824f56e fernly: Initial commit
This is an initial commit of the code.  It just does prints "Hello, world!"
2014-06-12 12:58:06 +08:00

9 lines
135 B
C

#ifndef __UART_H__
#define __UART_H__
#include <stdint.h>
int uart_putc(uint8_t c);
int uart_puts(char *s);
#endif /* __UART_H__ */