mirror of
https://github.com/azahar-emu/dynarmic.git
synced 2026-04-01 03:01:00 +02:00
Implement thumb1_TST_reg
This commit is contained in:
@@ -178,6 +178,10 @@ public:
|
||||
return Common::StringFromFormat("rors %s, %s", RegStr(d_n), RegStr(m));
|
||||
}
|
||||
|
||||
std::string thumb1_TST_reg(Reg m, Reg n) {
|
||||
return Common::StringFromFormat("tst %s, %s", RegStr(n), RegStr(m));
|
||||
}
|
||||
|
||||
std::string thumb1_ADD_reg_t2(bool d_n_hi, Reg m, Reg d_n_lo) {
|
||||
Reg d_n = d_n_hi ? (d_n_lo + 8) : d_n_lo;
|
||||
return Common::StringFromFormat("add %s, %s", RegStr(d_n), RegStr(m));
|
||||
|
||||
Reference in New Issue
Block a user