citra-shitamoto-network/src/core/mem_map.cpp

64 lines
1.6 KiB
C++
Raw Normal View History

2014-12-17 11:08:14 +05:30
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
2014-04-09 04:45:46 +05:30
// Refer to the license.txt file included.
2015-05-06 12:36:12 +05:30
#include "common/common_types.h"
#include "common/logging/log.h"
2013-09-06 08:34:04 +05:30
#include "core/mem_map.h"
2013-09-06 08:34:04 +05:30
////////////////////////////////////////////////////////////////////////////////////////////////////
namespace Memory {
u8* g_exefs_code; ///< ExeFS:/.code is loaded here
u8* g_system_mem; ///< System memory
u8* g_heap; ///< Application heap (main memory)
u8* g_heap_linear; ///< Linear heap
u8* g_vram; ///< Video memory (VRAM) pointer
u8* g_shared_mem; ///< Shared memory
u8* g_dsp_mem; ///< DSP memory
u8* g_kernel_mem; ///< Kernel memory
2015-04-28 07:29:06 +05:30
namespace {
2015-04-28 07:29:06 +05:30
struct MemoryArea {
u8** ptr;
size_t size;
2013-09-06 08:34:04 +05:30
};
// We don't declare the IO regions in here since its handled by other means.
static MemoryArea memory_areas[] = {
{&g_exefs_code, EXEFS_CODE_SIZE },
{&g_vram, VRAM_SIZE },
{&g_heap, HEAP_SIZE },
{&g_shared_mem, SHARED_MEMORY_SIZE},
{&g_system_mem, SYSTEM_MEMORY_SIZE},
{&g_dsp_mem, DSP_MEMORY_SIZE },
{&g_kernel_mem, KERNEL_MEMORY_SIZE},
{&g_heap_linear, HEAP_LINEAR_SIZE },
};
2013-09-19 08:06:39 +05:30
}
2013-09-06 08:34:04 +05:30
void Init() {
for (MemoryArea& area : memory_areas) {
*area.ptr = new u8[area.size];
}
2015-04-28 07:29:06 +05:30
MemBlock_Init();
2014-03-30 07:23:41 +05:30
LOG_DEBUG(HW_Memory, "initialized OK, RAM at %p", g_heap);
2013-09-06 08:34:04 +05:30
}
void Shutdown() {
2015-04-28 07:29:06 +05:30
MemBlock_Shutdown();
for (MemoryArea& area : memory_areas) {
delete[] *area.ptr;
*area.ptr = nullptr;
}
LOG_DEBUG(HW_Memory, "shutdown OK");
2013-09-06 08:34:04 +05:30
}
} // namespace