aboutsummaryrefslogtreecommitdiff
path: root/src/core/arm/arm_interface.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-07-11 14:56:26 -0400
committerGitHub <noreply@github.com>2019-07-11 14:56:26 -0400
commit521fb325aaabf46f1f1586120a1233dc2ad5df69 (patch)
tree0d17ea4ab98dbf2e9ed17faa022b689d858a752f /src/core/arm/arm_interface.h
parent2a94745500ea3fc7634b2118ab3b9ec1cb4f4327 (diff)
parent8fc806e88acb69db6cfa84ad7252a4530b67c55f (diff)
Merge pull request #2723 from lioncash/mem
core/arm: Remove obsolete Unicorn memory mapping
Diffstat (limited to 'src/core/arm/arm_interface.h')
-rw-r--r--src/core/arm/arm_interface.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h
index c6691a8e1..45e94e625 100644
--- a/src/core/arm/arm_interface.h
+++ b/src/core/arm/arm_interface.h
@@ -44,13 +44,6 @@ public:
/// Step CPU by one instruction
virtual void Step() = 0;
- /// Maps a backing memory region for the CPU
- virtual void MapBackingMemory(VAddr address, std::size_t size, u8* memory,
- Kernel::VMAPermission perms) = 0;
-
- /// Unmaps a region of memory that was previously mapped using MapBackingMemory
- virtual void UnmapMemory(VAddr address, std::size_t size) = 0;
-
/// Clear all instruction cache
virtual void ClearInstructionCache() = 0;