mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-24 00:25:42 +00:00
target-arm: Fix RVBAR_EL1 register encoding
Fix the RVBAR_EL1 CP register opc2 encoding from 2 to 1 Backports commit 569b49f864e7593a14182acae5a7f5981f6ec24f from qemu
This commit is contained in:
parent
9b28dc55c8
commit
6c33ec25fc
|
@ -2601,7 +2601,7 @@ void register_cp_regs_for_features(ARMCPU *cpu)
|
|||
REGINFO_SENTINEL
|
||||
};
|
||||
ARMCPRegInfo rvbar = {
|
||||
"RVBAR_EL1", 0,12,0, 3,0,2, ARM_CP_STATE_AA64,
|
||||
"RVBAR_EL1", 0,12,0, 3,0,1, ARM_CP_STATE_AA64,
|
||||
ARM_CP_CONST, PL1_R, 0, NULL, cpu->rvbar
|
||||
};
|
||||
define_one_arm_cp_reg(cpu, &rvbar);
|
||||
|
|
Loading…
Reference in a new issue