mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 16:27:47 +00:00
kernel: Various 64-bit fixes in memory/process/thread
This commit is contained in:
parent
7b3a56f0fb
commit
78531342a4
5 changed files with 14 additions and 14 deletions
|
@ -13,9 +13,9 @@ namespace Kernel {
|
|||
class VMManager;
|
||||
|
||||
struct MemoryRegionInfo {
|
||||
u32 base; // Not an address, but offset from start of FCRAM
|
||||
u32 size;
|
||||
u32 used;
|
||||
u64 base; // Not an address, but offset from start of FCRAM
|
||||
u64 size;
|
||||
u64 used;
|
||||
|
||||
std::shared_ptr<std::vector<u8>> linear_heap_memory;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue