microinstruction: A32ExceptionRaised causes CPU exception
This commit is contained in:
parent
6595e49a31
commit
ccbf6c7f63
1 changed files with 4 additions and 3 deletions
|
@ -364,9 +364,10 @@ bool Inst::WritesToFPSRCumulativeSaturationBit() const {
|
|||
}
|
||||
|
||||
bool Inst::CausesCPUException() const {
|
||||
return op == Opcode::Breakpoint ||
|
||||
op == Opcode::A32CallSupervisor ||
|
||||
op == Opcode::A64CallSupervisor ||
|
||||
return op == Opcode::Breakpoint ||
|
||||
op == Opcode::A32CallSupervisor ||
|
||||
op == Opcode::A32ExceptionRaised ||
|
||||
op == Opcode::A64CallSupervisor ||
|
||||
op == Opcode::A64ExceptionRaised;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue