A32: Implement Thumb-1 variant of WFI

This commit is contained in:
Lioncash 2019-05-03 10:48:04 -04:00 committed by MerryMage
parent b4110af22a
commit ebab7ede55
3 changed files with 10 additions and 0 deletions

View file

@ -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);
}