microinstruction: A32ExceptionRaised causes CPU exception

This commit is contained in:
MerryMage 2018-08-25 22:56:15 +01:00
parent 6595e49a31
commit ccbf6c7f63

View file

@ -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;
}