Browse Source
Merge pull request #4442 from lioncash/devicemem
device_memory: Remove unused system member
pull/15/merge
bunnei
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
4 additions and
11 deletions
-
src/core/core.cpp
-
src/core/device_memory.cpp
-
src/core/device_memory.h
|
|
|
@ -146,7 +146,7 @@ struct System::Impl { |
|
|
|
ResultStatus Init(System& system, Frontend::EmuWindow& emu_window) { |
|
|
|
LOG_DEBUG(HW_Memory, "initialized OK"); |
|
|
|
|
|
|
|
device_memory = std::make_unique<Core::DeviceMemory>(system); |
|
|
|
device_memory = std::make_unique<Core::DeviceMemory>(); |
|
|
|
|
|
|
|
is_multicore = Settings::values.use_multi_core.GetValue(); |
|
|
|
is_async_gpu = is_multicore || Settings::values.use_asynchronous_gpu_emulation.GetValue(); |
|
|
|
|
|
|
|
@ -2,14 +2,11 @@ |
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/device_memory.h"
|
|
|
|
#include "core/memory.h"
|
|
|
|
|
|
|
|
namespace Core { |
|
|
|
|
|
|
|
DeviceMemory::DeviceMemory(System& system) : buffer{DramMemoryMap::Size}, system{system} {} |
|
|
|
|
|
|
|
DeviceMemory::DeviceMemory() : buffer{DramMemoryMap::Size} {} |
|
|
|
DeviceMemory::~DeviceMemory() = default; |
|
|
|
|
|
|
|
} // namespace Core
|
|
|
|
@ -4,14 +4,11 @@ |
|
|
|
|
|
|
|
#pragma once |
|
|
|
|
|
|
|
#include "common/assert.h" |
|
|
|
#include "common/common_funcs.h" |
|
|
|
#include "common/common_types.h" |
|
|
|
#include "common/virtual_buffer.h" |
|
|
|
|
|
|
|
namespace Core { |
|
|
|
|
|
|
|
class System; |
|
|
|
|
|
|
|
namespace DramMemoryMap { |
|
|
|
enum : u64 { |
|
|
|
Base = 0x80000000ULL, |
|
|
|
@ -26,7 +23,7 @@ enum : u64 { |
|
|
|
|
|
|
|
class DeviceMemory : NonCopyable { |
|
|
|
public: |
|
|
|
explicit DeviceMemory(Core::System& system); |
|
|
|
explicit DeviceMemory(); |
|
|
|
~DeviceMemory(); |
|
|
|
|
|
|
|
template <typename T> |
|
|
|
@ -45,7 +42,6 @@ public: |
|
|
|
|
|
|
|
private: |
|
|
|
Common::VirtualBuffer<u8> buffer; |
|
|
|
Core::System& system; |
|
|
|
}; |
|
|
|
|
|
|
|
} // namespace Core |