diff options
author | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2018-04-14 22:15:19 +0200 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2018-05-29 09:33:40 +0200 |
commit | c56911a424c5279a5113c4e1d508733a60c12dbc (patch) | |
tree | 902f21c85c1347d889026141fd7e0cee5f857d3c /target | |
parent | 5c594ef3c77c7226e7b2080430b9b74d26d5bd7e (diff) |
target-microblaze: Correct the PVR array size
Correct the PVR array size, there are 13 PVR registers.
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/microblaze/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/microblaze/cpu.h b/target/microblaze/cpu.h index 994496515f..2304c24b7d 100644 --- a/target/microblaze/cpu.h +++ b/target/microblaze/cpu.h @@ -277,7 +277,7 @@ struct CPUMBState { /* These fields are preserved on reset. */ struct { - uint32_t regs[16]; + uint32_t regs[13]; } pvr; }; |