mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-25 16:54:40 +01:00
A32: Implement Thumb-1 variant of WFI
This commit is contained in:
parent
b4110af22a
commit
ebab7ede55
3 changed files with 10 additions and 0 deletions
|
|
@ -258,6 +258,10 @@ public:
|
|||
return "wfe";
|
||||
}
|
||||
|
||||
std::string thumb16_WFI() {
|
||||
return "wfi";
|
||||
}
|
||||
|
||||
std::string thumb16_SXTH(Reg m, Reg d) {
|
||||
return fmt::format("sxth {}, {}", d, m);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue