thumb32: Implement WFI

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

View File

@@ -42,6 +42,10 @@ bool ThumbTranslatorVisitor::thumb32_WFE() {
return thumb16_WFE();
}
bool ThumbTranslatorVisitor::thumb32_WFI() {
return thumb16_WFI();
}
bool ThumbTranslatorVisitor::thumb32_YIELD() {
return thumb16_YIELD();
}