mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-08 15:38:19 +01:00
A64: Implement system register CTR_EL0
This commit is contained in:
parent
58fbb3ff1b
commit
1e15283d00
6 changed files with 22 additions and 0 deletions
|
|
@ -60,6 +60,9 @@ bool TranslatorVisitor::MRS(Imm<1> o0, Imm<3> op1, Imm<4> CRn, Imm<4> CRm, Imm<3
|
|||
case 0b11'011'0000'0000'111: // DCZID_EL0
|
||||
X(32, Rt, ir.GetDCZID());
|
||||
return true;
|
||||
case 0b11'011'0000'0000'001: // CTR_EL0
|
||||
X(32, Rt, ir.GetCTR());
|
||||
return true;
|
||||
}
|
||||
return InterpretThisInstruction();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue