mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-01 04:04:30 +01:00
Implement thumb1_ADC_reg
This commit is contained in:
parent
9e9fa62d5f
commit
1953e44532
3 changed files with 19 additions and 2 deletions
|
|
@ -166,6 +166,10 @@ public:
|
|||
return Common::StringFromFormat("asrs %s, %s", RegStr(d_n), RegStr(m));
|
||||
}
|
||||
|
||||
std::string thumb1_ADC_reg(Reg m, Reg d_n) {
|
||||
return Common::StringFromFormat("adcs %s, %s", RegStr(d_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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue