mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-30 11:14:47 +01:00
A32: Implement ARM-mode UBFX
This commit is contained in:
parent
2970b34e3c
commit
47218ee65d
5 changed files with 39 additions and 0 deletions
|
|
@ -601,6 +601,9 @@ public:
|
|||
std::string arm_SEL(Cond cond, Reg n, Reg d, Reg m) {
|
||||
return fmt::format("sel{} {}, {}, {}", CondToString(cond), d, n, m);
|
||||
}
|
||||
std::string arm_UBFX(Cond cond, Imm5 widthm1, Reg d, Imm5 lsb, Reg n) {
|
||||
return fmt::format("ubfx{} {}, {}, #{}, #{}", CondToString(cond), d, n, lsb, widthm1 + 1);
|
||||
}
|
||||
|
||||
// Unsigned sum of absolute difference functions
|
||||
std::string arm_USAD8(Cond cond, Reg d, Reg m, Reg n) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue