A32: Implement Thumb-1 variant of NOP

This commit is contained in:
Lioncash 2019-05-03 10:36:27 -04:00 committed by MerryMage
parent 81b908b077
commit 64879396f6
3 changed files with 12 additions and 0 deletions

View file

@ -246,6 +246,10 @@ public:
return fmt::format("sub sp, sp, #{}", imm32);
}
std::string thumb16_NOP() {
return "nop";
}
std::string thumb16_SXTH(Reg m, Reg d) {
return fmt::format("sxth {}, {}", d, m);
}