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/interpreter/arm_interpreter.cpp | |
| parent | 6b264518a50ce21cb1be55ff3eac4e1c85582cfe (diff) | |
added option to set CPSR register to arm_interface
Diffstat (limited to 'src/core/arm/interpreter/arm_interpreter.cpp')
| -rw-r--r-- | src/core/arm/interpreter/arm_interpreter.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/arm/interpreter/arm_interpreter.cpp b/src/core/arm/interpreter/arm_interpreter.cpp index 4045779d7..81147f2d4 100644 --- a/src/core/arm/interpreter/arm_interpreter.cpp +++ b/src/core/arm/interpreter/arm_interpreter.cpp @@ -78,6 +78,14 @@ u32 ARM_Interpreter::GetCPSR() const { } /** + * Set the current CPSR register + * @param cpsr Value to set CPSR to + */ +void ARM_Interpreter::SetCPSR(u32 cpsr) { + m_state->Cpsr = cpsr; +} + +/** * Returns the number of clock ticks since the last reset * @return Returns number of clock ticks */ |
