device_memory: Remove unused system member
This isn't used by anything in particular, so it can be removed.
This commit is contained in:
parent
6b35317ff3
commit
2258f33ee4
3 changed files with 4 additions and 11 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue