diff options
author | Alistair Francis <alistair.francis@xilinx.com> | 2015-06-18 21:16:35 -0700 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2015-06-21 17:20:16 +1000 |
commit | a88bbb006a523deabb90245a283d1914abd34e3e (patch) | |
tree | 18738f57f51b31b3c55d3f29a697afcc2c6f980b /target-microblaze/cpu-qom.h | |
parent | a6c3ed24748f06742413e174167b0faa7030c244 (diff) | |
download | qemu-a88bbb006a523deabb90245a283d1914abd34e3e.zip |
target-microblaze: Convert endi to a CPU property
Originally the endi PVR bits were manually set for each machine. This
is a hassle and difficult to read, instead set them based on the CPU
properties.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Diffstat (limited to 'target-microblaze/cpu-qom.h')
-rw-r--r-- | target-microblaze/cpu-qom.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-microblaze/cpu-qom.h b/target-microblaze/cpu-qom.h index 3b6165d21a..d1d814b73e 100644 --- a/target-microblaze/cpu-qom.h +++ b/target-microblaze/cpu-qom.h @@ -66,6 +66,7 @@ typedef struct MicroBlazeCPU { uint8_t use_fpu; bool use_mmu; bool dcache_writeback; + bool endi; } cfg; CPUMBState env; |