Memory: replace Core::CPU

This commit is contained in:
Weiyi Wang 2019-02-01 12:43:55 -05:00
parent 5f6d9f1915
commit 9573ee46bd
3 changed files with 14 additions and 2 deletions

View file

@ -12,6 +12,8 @@
#include "common/common_types.h"
#include "core/mmio.h"
class ARM_Interface;
namespace Kernel {
class Process;
}
@ -214,6 +216,9 @@ public:
MemorySystem();
~MemorySystem();
/// Sets CPU to notify page table change
void SetCPU(ARM_Interface& cpu);
/**
* Maps an allocated buffer onto a region of the emulated process address space.
*