thermosphere: trap set/way dcache access

note: qemu does not implement the trap
This commit is contained in:
TuxSH
2020-01-15 17:30:25 +00:00
parent 72d1992eec
commit 6b8a843ffb
6 changed files with 92 additions and 4 deletions

View File

@@ -41,6 +41,9 @@ typedef struct CoreCtx {
void *executedFunctionArgs; // @0x48
Barrier executedFunctionBarrier; // @0x50
bool executedFunctionSync; // @0x54
// Cache stuff
u32 setWayCounter; // @0x58
} CoreCtx;
static_assert(offsetof(CoreCtx, warmboot) == 0x2E, "Wrong definition for CoreCtx");