summaryrefslogtreecommitdiff
path: root/src/core/arm/arm_interface.h
diff options
context:
space:
mode:
authorGravatar B3n302017-09-25 08:29:32 +0200
committerGravatar GitHub2017-09-25 08:29:32 +0200
commitd881dee818e7e59b72cb11cea634eb70bdcd3d35 (patch)
tree4f9b241fb63b90647e2992e83d83de7d25bb5d42 /src/core/arm/arm_interface.h
parentMerge pull request #2951 from huwpascoe/perf-4 (diff)
parentARM_Interface: Implement PageTableChanged (diff)
downloadyuzu-d881dee818e7e59b72cb11cea634eb70bdcd3d35.tar.gz
yuzu-d881dee818e7e59b72cb11cea634eb70bdcd3d35.tar.xz
yuzu-d881dee818e7e59b72cb11cea634eb70bdcd3d35.zip
Merge pull request #2952 from MerryMage/page-tables
Switchable Page Tables
Diffstat (limited to 'src/core/arm/arm_interface.h')
-rw-r--r--src/core/arm/arm_interface.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h
index ccd43f431..2aa017a54 100644
--- a/src/core/arm/arm_interface.h
+++ b/src/core/arm/arm_interface.h
@@ -41,6 +41,9 @@ public:
41 /// Clear all instruction cache 41 /// Clear all instruction cache
42 virtual void ClearInstructionCache() = 0; 42 virtual void ClearInstructionCache() = 0;
43 43
44 /// Notify CPU emulation that page tables have changed
45 virtual void PageTableChanged() = 0;
46
44 /** 47 /**
45 * Set the Program Counter to an address 48 * Set the Program Counter to an address
46 * @param addr Address to set PC to 49 * @param addr Address to set PC to