mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-01 20:24:36 +01:00
Implement memory endianness. Implement Thumb SETEND instruction.
This commit is contained in:
parent
98bd7ff6a5
commit
90d317b868
9 changed files with 54 additions and 9 deletions
|
|
@ -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));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue