mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-08 05:16:28 +00:00
A32/Thumb: Correct behaviour for UDF and Unpredictable instructions
Raise an exception instead of calling the interpreter and ASSERT-ing respectively.
This commit is contained in:
@@ -885,7 +885,7 @@ bool ThumbTranslatorVisitor::thumb16_CBZ_CBNZ(bool nonzero, Imm<1> i, Imm<5> imm
|
||||
}
|
||||
|
||||
bool ThumbTranslatorVisitor::thumb16_UDF() {
|
||||
return InterpretThisInstruction();
|
||||
return UndefinedInstruction();
|
||||
}
|
||||
|
||||
// BX <Rm>
|
||||
|
||||
Reference in New Issue
Block a user