thumb32: Implement NOP

This commit is contained in:
Lioncash
2021-02-22 07:21:51 -05:00
parent 29d7cbd899
commit a73ea9e111
3 changed files with 6 additions and 1 deletions

View File

@@ -30,6 +30,10 @@ bool ThumbTranslatorVisitor::thumb32_ISB([[maybe_unused]] Imm<4> option) {
return false;
}
bool ThumbTranslatorVisitor::thumb32_NOP() {
return thumb16_NOP();
}
bool ThumbTranslatorVisitor::thumb32_UDF() {
return thumb16_UDF();
}