thermosphere: add semihosting support & load a kernel using it when needed

basically host i/o
This commit is contained in:
TuxSH 2019-07-31 02:30:17 +02:00
parent ecb4857cbb
commit 3fa9133814
8 changed files with 333 additions and 4 deletions

View file

@ -20,7 +20,8 @@
typedef struct CoreCtx {
u64 kernelArgument;
uintptr_t kernelEntrypoint;
u32 coreId; // @ 0x0C
u32 coreId; // @0x10
bool isColdBootCore; // @0x14
} CoreCtx;
extern CoreCtx g_coreCtxs[4];