mirror of
https://github.com/azahar-emu/dynarmic.git
synced 2026-04-22 12:55:30 +02:00
Implement CPS (Thumb)
* Since currently only User mode is emulated, CPS is a NOP.
This commit is contained in:
@@ -274,6 +274,10 @@ public:
|
||||
return fmt::format("setend {}", E ? "BE" : "LE");
|
||||
}
|
||||
|
||||
std::string thumb16_CPS(bool im, bool a, bool i, bool f) {
|
||||
return fmt::format("cps{} {}{}{}", im ? "id" : "ie", a ? "a" : "", i ? "i" : "", f ? "f" : "");
|
||||
}
|
||||
|
||||
std::string thumb16_REV(Reg m, Reg d) {
|
||||
return fmt::format("rev {}, {}", d, m);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user