fernly: Initial commit
This is an initial commit of the code. It just does prints "Hello, world!"
This commit is contained in:
commit
685824f56e
12 changed files with 398 additions and 0 deletions
9
include/serial.h
Normal file
9
include/serial.h
Normal 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__ */
|
Loading…
Add table
Add a link
Reference in a new issue