Atmosphere/thermosphere/src/main.c
2020-02-04 19:12:18 +00:00

13 lines
227 B
C

#include "utils.h"
#include "log.h"
#include "platform/uart.h"
int main(void)
{
uartInit(115200);
//uart_send(UART_C, "0123\n", 3);
serialLog("Hello from Thermosphere!\r\n");
__builtin_trap();
return 0;
}