mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2025-01-11 07:14:46 +00:00
13 lines
227 B
C
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;
|
|
}
|