[HACK] A32/exception_generating: Interpret undefined instructions
This commit is contained in:
parent
4e7de5cc57
commit
41ea882353
@ -41,7 +41,11 @@ bool ArmTranslatorVisitor::arm_SVC(Cond cond, Imm<24> imm24) {
|
|||||||
|
|
||||||
// UDF<c> #<imm16>
|
// UDF<c> #<imm16>
|
||||||
bool ArmTranslatorVisitor::arm_UDF() {
|
bool ArmTranslatorVisitor::arm_UDF() {
|
||||||
|
#if ARCHITECTURE_x86_64
|
||||||
return UndefinedInstruction();
|
return UndefinedInstruction();
|
||||||
|
#else
|
||||||
|
return InterpretThisInstruction();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Dynarmic::A32
|
} // namespace Dynarmic::A32
|
||||||
|
Loading…
x
Reference in New Issue
Block a user