2020-04-06 12:20:31 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2020-04-06 13:28:56 +00:00
|
|
|
#include "../include/uart.h"
|
2020-04-11 11:03:49 +00:00
|
|
|
#include "../include/xprintf.h"
|
2020-04-06 12:20:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2020-04-12 11:38:26 +00:00
|
|
|
uart_init();
|
2020-04-06 12:20:31 +00:00
|
|
|
|
2020-04-12 11:38:26 +00:00
|
|
|
xprintf("hello world\n");
|
2020-04-06 12:20:31 +00:00
|
|
|
|
|
|
|
while (1);
|
|
|
|
}
|