25 lines
327 B
C
25 lines
327 B
C
#include <stdint.h>
|
|
|
|
#include "../include/uart.h"
|
|
#include "../include/xprintf.h"
|
|
|
|
|
|
|
|
static void uart_putc(uint8_t c)
|
|
{
|
|
while (UART0_REG(UART0_STATUS) & 0x1);
|
|
UART0_REG(UART0_TXDATA) = c;
|
|
}
|
|
|
|
|
|
int main()
|
|
{
|
|
UART0_REG(UART0_CTRL) = 0x1;
|
|
|
|
xdev_out(uart_putc);
|
|
|
|
xprintf("%d hello world\n", 1);
|
|
|
|
while (1);
|
|
}
|