A32: Implement Thumb-1 variant of SEVL

While we're at it, also add the Thumb-2 encoding to the encoding table
to make sure it isn't forgotten about in the future.
This commit is contained in:
Lioncash 2019-05-03 11:00:03 -04:00 committed by MerryMage
parent 9a097e307f
commit 9935f3aa28
4 changed files with 11 additions and 0 deletions

View file

@ -254,6 +254,10 @@ public:
return "sev";
}
std::string thumb16_SEVL() {
return "sevl";
}
std::string thumb16_WFE() {
return "wfe";
}