mirror of
https://github.com/azahar-emu/dynarmic.git
synced 2026-04-07 13:57:12 +02:00
Implement MUL (T1)
This commit is contained in:
@@ -120,6 +120,10 @@ public:
|
||||
return fmt::format("orrs {}, {}", d_n, m);
|
||||
}
|
||||
|
||||
std::string thumb16_MUL_reg(Reg n, Reg d_m) {
|
||||
return fmt::format("muls {}, {}, {}", d_m, n, d_m);
|
||||
}
|
||||
|
||||
std::string thumb16_BIC_reg(Reg m, Reg d_n) {
|
||||
return fmt::format("bics {}, {}", d_n, m);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user