shadPS4/src/Core/Memory.h
2023-05-25 13:16:53 +03:00

11 lines
No EOL
201 B
C++

#pragma once
constexpr u64 SYSTEM_RESERVED = 0x800000000u;
constexpr u64 CODE_BASE_OFFSET = 0x100000000u;
namespace Memory
{
namespace VirtualMemory {
u64 memory_alloc(u64 address, u64 size);
}
}