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