shadPS4/src/Core/Memory.h

11 lines
201 B
C
Raw Normal View History

2023-05-17 18:29:05 +02:00
#pragma once
constexpr u64 SYSTEM_RESERVED = 0x800000000u;
constexpr u64 CODE_BASE_OFFSET = 0x100000000u;
2023-05-17 18:29:05 +02:00
namespace Memory
{
namespace VirtualMemory {
u64 memory_alloc(u64 address, u64 size);
}
}