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

View File

@@ -169,6 +169,7 @@ struct ThumbTranslatorVisitor final {
bool thumb32_DSB(Imm<4> option);
bool thumb32_ISB(Imm<4> option);
bool thumb32_NOP();
bool thumb32_SEV();
bool thumb32_UDF();
bool thumb32_WFE();
bool thumb32_WFI();