diff options
| author | Edgar E. Iglesias | 2018-04-13 21:55:21 +0200 |
|---|---|---|
| committer | Edgar E. Iglesias | 2018-05-29 09:33:40 +0200 |
| commit | 5c594ef3c77c7226e7b2080430b9b74d26d5bd7e (patch) | |
| tree | e1709bffb97b92dd9bf9efc69b84d96f61c4ba82 /target/microblaze/cpu.h | |
| parent | target-microblaze: Fallback to our latest CPU version (diff) | |
| download | qemu-5c594ef3c77c7226e7b2080430b9b74d26d5bd7e.tar.gz qemu-5c594ef3c77c7226e7b2080430b9b74d26d5bd7e.tar.xz qemu-5c594ef3c77c7226e7b2080430b9b74d26d5bd7e.zip | |
target-microblaze: Correct special register array sizes
Correct special register array sizes.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Diffstat (limited to 'target/microblaze/cpu.h')
| -rw-r--r-- | target/microblaze/cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/microblaze/cpu.h b/target/microblaze/cpu.h index 5be71bc320..994496515f 100644 --- a/target/microblaze/cpu.h +++ b/target/microblaze/cpu.h @@ -242,8 +242,8 @@ struct CPUMBState { uint32_t bimm; uint32_t imm; - uint32_t regs[33]; - uint32_t sregs[24]; + uint32_t regs[32]; + uint32_t sregs[14]; float_status fp_status; /* Stack protectors. Yes, it's a hw feature. */ uint32_t slr, shr; |
