mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-21 10:55:03 +00:00
11 lines
No EOL
201 B
C++
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);
|
|
}
|
|
} |