mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-24 00:32:58 +00:00
Implement memory endianness. Implement Thumb SETEND instruction.
This commit is contained in:
@@ -359,6 +359,10 @@ public:
|
||||
return "pop " + RegListStr(reg_list);
|
||||
}
|
||||
|
||||
std::string thumb16_SETEND(bool E) {
|
||||
return Common::StringFromFormat("setend %s", E ? "BE" : "LE");
|
||||
}
|
||||
|
||||
std::string thumb16_REV(Reg m, Reg d) {
|
||||
return Common::StringFromFormat("rev %s, %s", RegStr(d), RegStr(m));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user