2014-04-09 01:15:46 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-09 01:15:46 +02:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
2013-09-06 00:33:46 +02:00
|
|
|
|
2015-08-06 02:26:52 +02:00
|
|
|
#include <memory>
|
|
|
|
|
2014-04-09 02:15:08 +02:00
|
|
|
#include "common/common_types.h"
|
2013-09-06 00:33:46 +02:00
|
|
|
|
2015-08-06 02:26:52 +02:00
|
|
|
#include "core/hle/kernel/process.h"
|
|
|
|
|
2015-07-10 03:52:15 +02:00
|
|
|
namespace Kernel {
|
2015-08-06 02:26:52 +02:00
|
|
|
|
2015-07-10 03:52:15 +02:00
|
|
|
class VMManager;
|
2015-08-06 02:26:52 +02:00
|
|
|
|
|
|
|
struct MemoryRegionInfo {
|
|
|
|
u32 base; // Not an address, but offset from start of FCRAM
|
|
|
|
u32 size;
|
|
|
|
|
|
|
|
std::shared_ptr<std::vector<u8>> linear_heap_memory;
|
|
|
|
};
|
|
|
|
|
|
|
|
void MemoryInit(u32 mem_type);
|
|
|
|
void MemoryShutdown();
|
|
|
|
MemoryRegionInfo* GetMemoryRegion(MemoryRegion region);
|
|
|
|
|
2015-07-10 03:52:15 +02:00
|
|
|
}
|
|
|
|
|
2015-01-11 04:56:28 +01:00
|
|
|
namespace Memory {
|
2014-08-28 20:20:55 +02:00
|
|
|
|
2013-09-06 00:33:46 +02:00
|
|
|
void Init();
|
2015-07-10 03:52:15 +02:00
|
|
|
void InitLegacyAddressSpace(Kernel::VMManager& address_space);
|
2014-04-18 05:05:31 +02:00
|
|
|
|
2013-09-06 00:33:46 +02:00
|
|
|
} // namespace
|