mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 15:40:00 +01:00
DisassemblerArm: Disassemble SETEND
This commit is contained in:
parent
8e8db6e137
commit
945498a16a
@ -736,7 +736,9 @@ public:
|
|||||||
std::string arm_MRS() { return "ice"; }
|
std::string arm_MRS() { return "ice"; }
|
||||||
std::string arm_MSR() { return "ice"; }
|
std::string arm_MSR() { return "ice"; }
|
||||||
std::string arm_RFE() { return "ice"; }
|
std::string arm_RFE() { return "ice"; }
|
||||||
std::string arm_SETEND(bool E) { return "ice"; }
|
std::string arm_SETEND(bool E) {
|
||||||
|
return E ? "setend be" : "setend le";
|
||||||
|
}
|
||||||
std::string arm_SRS() { return "ice"; }
|
std::string arm_SRS() { return "ice"; }
|
||||||
|
|
||||||
// Floating point arithmetic instructions
|
// Floating point arithmetic instructions
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user