mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-27 09:45:19 +01:00
Implement arm_ADC_imm
This commit is contained in:
parent
63242924fc
commit
4b1c27e64f
5 changed files with 193 additions and 10 deletions
|
|
@ -521,7 +521,7 @@ public:
|
|||
std::string DisassembleArm(u32 instruction) {
|
||||
DisassemblerVisitor visitor;
|
||||
auto decoder = DecodeArm<DisassemblerVisitor>(instruction);
|
||||
return !decoder ? "UNKNOWN" : decoder->call(visitor, instruction);
|
||||
return !decoder ? Common::StringFromFormat("UNKNOWN: %x", instruction) : decoder->call(visitor, instruction);
|
||||
}
|
||||
|
||||
} // namespace Arm
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue