mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-31 11:44:44 +01:00
A64: Implement DSB, DMB
This commit is contained in:
parent
5edd623b9d
commit
bfd65bedfe
7 changed files with 34 additions and 2 deletions
|
|
@ -36,4 +36,14 @@ bool TranslatorVisitor::SEVL() {
|
|||
return true;
|
||||
}
|
||||
|
||||
bool TranslatorVisitor::DSB(Imm<4> /*CRm*/) {
|
||||
ir.DataSynchronizationBarrier();
|
||||
return true;
|
||||
}
|
||||
|
||||
bool TranslatorVisitor::DMB(Imm<4> /*CRm*/) {
|
||||
ir.DataMemoryBarrier();
|
||||
return true;
|
||||
}
|
||||
|
||||
} // namespace Dynarmic::A64
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue