mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-02 04:34:43 +01:00
Implement thumb1_CMP_imm
This commit is contained in:
parent
98f300144b
commit
aa72323823
4 changed files with 17 additions and 2 deletions
|
|
@ -134,6 +134,10 @@ public:
|
|||
return Common::StringFromFormat("movs %s, #%u", RegStr(d), imm8);
|
||||
}
|
||||
|
||||
std::string thumb1_CMP_imm(Reg n, Imm8 imm8) {
|
||||
return Common::StringFromFormat("cmp %s, #%u", RegStr(n), imm8);
|
||||
}
|
||||
|
||||
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