mirror of https://github.com/xemu-project/xemu.git
target-microblaze: Don't hard code 0xb as initial MB version
Don't hard code 0xb as initial MB version. Reviewed-by: Alistair Francis <alistair.francis@xilinx.com> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
This commit is contained in:
parent
79549c9960
commit
3e92250589
|
@ -152,8 +152,7 @@ static void mb_cpu_realizefn(DeviceState *dev, Error **errp)
|
|||
| PVR0_USE_HW_MUL_MASK \
|
||||
| PVR0_USE_EXC_MASK \
|
||||
| PVR0_USE_ICACHE_MASK \
|
||||
| PVR0_USE_DCACHE_MASK \
|
||||
| (0xb << 8);
|
||||
| PVR0_USE_DCACHE_MASK;
|
||||
env->pvr.regs[2] = PVR2_D_OPB_MASK \
|
||||
| PVR2_D_LMB_MASK \
|
||||
| PVR2_I_OPB_MASK \
|
||||
|
|
Loading…
Reference in New Issue