A32: Implement Thumb-1 variant of SEV

This commit is contained in:
Lioncash 2019-05-03 10:43:39 -04:00 committed by MerryMage
parent 07699b47ba
commit 57675fe592
3 changed files with 10 additions and 0 deletions

View file

@ -250,6 +250,10 @@ public:
return "nop";
}
std::string thumb16_SEV() {
return "sev";
}
std::string thumb16_SXTH(Reg m, Reg d) {
return fmt::format("sxth {}, {}", d, m);
}