summaryrefslogtreecommitdiff
path: root/src/core/arm/arm_interface.h
diff options
context:
space:
mode:
authorGravatar bunnei2015-04-06 15:06:07 -0400
committerGravatar bunnei2015-04-06 15:06:07 -0400
commit14dcd986535c681601d6f255899157aff021a5d2 (patch)
treefb35f0b8444122438dcdf41b4a3b0bf32e4d7d29 /src/core/arm/arm_interface.h
parentMerge pull request #684 from lioncash/uninit (diff)
parentcore: Migrate 3DS-specific CP15 register setting into Init (diff)
downloadyuzu-14dcd986535c681601d6f255899157aff021a5d2.tar.gz
yuzu-14dcd986535c681601d6f255899157aff021a5d2.tar.xz
yuzu-14dcd986535c681601d6f255899157aff021a5d2.zip
Merge pull request #685 from lioncash/cpregs
dyncom: Set the MPCore CP15 register reset values on initialization.
Diffstat (limited to 'src/core/arm/arm_interface.h')
-rw-r--r--src/core/arm/arm_interface.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h
index fe1e584ad..310663774 100644
--- a/src/core/arm/arm_interface.h
+++ b/src/core/arm/arm_interface.h
@@ -6,6 +6,7 @@
6 6
7#include "common/common.h" 7#include "common/common.h"
8#include "common/common_types.h" 8#include "common/common_types.h"
9#include "core/arm/skyeye_common/arm_regformat.h"
9 10
10namespace Core { 11namespace Core {
11 struct ThreadContext; 12 struct ThreadContext;
@@ -74,6 +75,20 @@ public:
74 virtual void SetCPSR(u32 cpsr) = 0; 75 virtual void SetCPSR(u32 cpsr) = 0;
75 76
76 /** 77 /**
78 * Gets the value stored in a CP15 register.
79 * @param reg The CP15 register to retrieve the value from.
80 * @return the value stored in the given CP15 register.
81 */
82 virtual u32 GetCP15Register(CP15Register reg) = 0;
83
84 /**
85 * Stores the given value into the indicated CP15 register.
86 * @param reg The CP15 register to store the value into.
87 * @param value The value to store into the CP15 register.
88 */
89 virtual void SetCP15Register(CP15Register reg, u32 value) = 0;
90
91 /**
77 * Advance the CPU core by the specified number of ticks (e.g. to simulate CPU execution time) 92 * Advance the CPU core by the specified number of ticks (e.g. to simulate CPU execution time)
78 * @param ticks Number of ticks to advance the CPU core 93 * @param ticks Number of ticks to advance the CPU core
79 */ 94 */