diff options
| author | MerryMage <MerryMage@users.noreply.github.com> | 2017-09-24 22:44:13 +0100 |
|---|---|---|
| committer | MerryMage <MerryMage@users.noreply.github.com> | 2017-09-24 23:08:25 +0100 |
| commit | 67a70bd9e1655dfd705550c1d561f3ba444360c8 (patch) | |
| tree | 18f0720a18d9d878a7699c755bf167af8564b776 /src/core/arm/arm_interface.h | |
| parent | 4e5eb2044acc304fc2068b53eb03e3a626832996 (diff) | |
ARM_Interface: Implement PageTableChanged
Diffstat (limited to 'src/core/arm/arm_interface.h')
| -rw-r--r-- | src/core/arm/arm_interface.h | 3 |
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: /// Clear all instruction cache virtual void ClearInstructionCache() = 0; + /// Notify CPU emulation that page tables have changed + virtual void PageTableChanged() = 0; + /** * Set the Program Counter to an address * @param addr Address to set PC to |
