added option to set CPSR register to arm_interface
This commit is contained in:
parent
6b264518a5
commit
ce4d271a53
3 changed files with 20 additions and 0 deletions
|
@ -77,6 +77,14 @@ u32 ARM_Interpreter::GetCPSR() const {
|
|||
return m_state->Cpsr;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue