thermosphere: enable traps, works around qemu brk bug

This commit is contained in:
TuxSH
2019-07-30 02:16:25 +02:00
parent ad6db14526
commit a291bddcc1
2 changed files with 4 additions and 2 deletions

View File

@@ -2,15 +2,17 @@
#include "core_ctx.h"
#include "log.h"
#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);
}