mirror of
https://github.com/azahar-emu/dynarmic.git
synced 2026-03-28 16:30:59 +01:00
Implement thumb1_MOV_reg
This commit is contained in:
@@ -217,6 +217,11 @@ public:
|
||||
return Common::StringFromFormat("cmp %s, %s", RegStr(n), RegStr(m));
|
||||
}
|
||||
|
||||
std::string thumb1_MOV_reg(bool d_hi, Reg m, Reg d_lo) {
|
||||
Reg d = d_hi ? (d_lo + 8) : d_lo;
|
||||
return Common::StringFromFormat("mov %s, %s", RegStr(d), RegStr(m));
|
||||
}
|
||||
|
||||
std::string thumb1_UDF() {
|
||||
return Common::StringFromFormat("udf");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user