Atmosphere/thermosphere/src/main.c

22 lines
385 B
C
Raw Normal View History

#include "utils.h"
#include "core_ctx.h"
#include "log.h"
2019-07-22 01:04:53 +02:00
#include "platform/uart.h"
#include "traps.h"
int main(void)
{
enableTraps();
if (currentCoreCtx->coreId == 0) {
uartInit(115200);
serialLog("Hello from Thermosphere!\n");
__builtin_trap();
}
else {
serialLog("Core %u booted\n", currentCoreCtx->coreId);
}
return 0;
}