mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-10 00:42:57 +00:00
thumb32: Implement SEV
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user