mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-04 05:34:42 +01:00
A64: Implement system register TPIDR_EL0
This commit is contained in:
parent
e3da92024e
commit
e4697b1676
6 changed files with 43 additions and 0 deletions
|
|
@ -65,6 +65,14 @@ IR::U32 IREmitter::GetDCZID() {
|
|||
return Inst<IR::U32>(Opcode::A64GetDCZID);
|
||||
}
|
||||
|
||||
IR::U64 IREmitter::GetTPIDR() {
|
||||
return Inst<IR::U64>(Opcode::A64GetTPIDR);
|
||||
}
|
||||
|
||||
void IREmitter::SetTPIDR(const IR::U64& value) {
|
||||
Inst(Opcode::A64SetTPIDR, value);
|
||||
}
|
||||
|
||||
IR::U64 IREmitter::GetTPIDRRO() {
|
||||
return Inst<IR::U64>(Opcode::A64GetTPIDRRO);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue