diff options
author | bunnei <ericbunnie@gmail.com> | 2014-05-11 22:14:13 -0400 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-05-11 22:14:13 -0400 |
commit | ce4d271a53e79814f66a46bd69a8970ea3849ee9 (patch) | |
tree | aca31760727d3ab5bd2d7f28e2e0a3c743640b2a /src/core/arm/arm_interface.h | |
parent | 6b264518a50ce21cb1be55ff3eac4e1c85582cfe (diff) |
added option to set CPSR register to arm_interface
Diffstat (limited to 'src/core/arm/arm_interface.h')
-rw-r--r-- | src/core/arm/arm_interface.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index 4dfe0570b5..602c91e302 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h @@ -56,6 +56,12 @@ public: virtual u32 GetCPSR() const = 0; /** + * Set the current CPSR register + * @param cpsr Value to set CPSR to + */ + virtual void SetCPSR(u32 cpsr) = 0; + + /** * Returns the number of clock ticks since the last rese * @return Returns number of clock ticks */ |