thumb32: Implement SEV

This commit is contained in:
Lioncash
2021-02-22 07:31:08 -05:00
parent 565a20b096
commit a4c9ec645f
3 changed files with 6 additions and 1 deletions

View File

@@ -34,6 +34,10 @@ bool ThumbTranslatorVisitor::thumb32_NOP() {
return thumb16_NOP();
}
bool ThumbTranslatorVisitor::thumb32_SEV() {
return thumb16_SEV();
}
bool ThumbTranslatorVisitor::thumb32_UDF() {
return thumb16_UDF();
}