mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-01 04:04:30 +01:00
Implement thumb1_SUB_imm
This commit is contained in:
parent
a2e40eb922
commit
34be20e4d6
3 changed files with 18 additions and 2 deletions
|
|
@ -126,6 +126,10 @@ public:
|
|||
return Common::StringFromFormat("adds %s, %s, #%u", RegStr(d), RegStr(n), imm3);
|
||||
}
|
||||
|
||||
std::string thumb1_SUB_imm(Imm3 imm3, Reg n, Reg d) {
|
||||
return Common::StringFromFormat("subs %s, %s, #%u", RegStr(d), RegStr(n), imm3);
|
||||
}
|
||||
|
||||
std::string thumb1_AND_reg(Reg m, Reg d_n) {
|
||||
return Common::StringFromFormat("ands %s, %s", RegStr(d_n), RegStr(m));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue