summaryrefslogtreecommitdiff
path: root/include/egg/core/eggSystem.h
diff options
context:
space:
mode:
authorSean Miller <seanmiller999@gmail.com>2026-04-09 23:32:06 +0100
committerSean Miller <seanmiller999@gmail.com>2026-04-09 23:32:06 +0100
commit2b3486b05fa356a71b3292806bcff2ddc7713aeb (patch)
tree5908233b09a221d76563ab3b0994774d023994f5 /include/egg/core/eggSystem.h
parentc8b3ad05d245098ddae0f27ea5042fd47cec098e (diff)
100% eggSystem.cpp
Diffstat (limited to 'include/egg/core/eggSystem.h')
-rw-r--r--include/egg/core/eggSystem.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/include/egg/core/eggSystem.h b/include/egg/core/eggSystem.h
index 634b7578..ef4a0968 100644
--- a/include/egg/core/eggSystem.h
+++ b/include/egg/core/eggSystem.h
@@ -4,6 +4,8 @@
#include "common.h"
#include "egg/core/eggVideo.h"
+struct OSBootInfo;
+
namespace EGG {
class Display;
@@ -35,18 +37,18 @@ public:
/* vt 0x38 */ virtual void initialize() = 0;
public:
- /* 0x04 */ u32 mRoot1HeapStart;
- /* 0x08 */ u32 mRoot1HeapEnd;
- /* 0x0C */ u32 mRoot2HeapStart;
- /* 0x10 */ u32 mRoot2HeapEnd;
+ /* 0x04 */ void *mRoot1HeapStart;
+ /* 0x08 */ void *mRoot1HeapEnd;
+ /* 0x0C */ void *mRoot2HeapStart;
+ /* 0x10 */ void *mRoot2HeapEnd;
/* 0x14 */ u32 mMemSize;
/* 0x18 */ Heap *mRootHeapMem1;
/* 0x1C */ Heap *mRootHeapMem2;
/* 0x20 */ Heap *mRootHeapDebug;
/* 0x24 */ Heap *mSystemHeap;
/* 0x28 */ Thread *mSystemThread;
- /* 0x2C */ u32 field_0x2C;
- /* 0x30 */ u32 mSystemHeapStart;
+ /* 0x2C */ OSBootInfo *mBootInfo;
+ /* 0x30 */ void *mSystemHeapStart;
/* 0x34 */ u32 mSystemHeapSize;
};
class BaseSystem {