mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
target/microblaze: Treat pvr_regs as constant
Do not allow gdb to set the values, and don't bother dumping unchanging values with -d cpu. Tested-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
a4bcfc3380
commit
5ad7cc07e5
2 changed files with 0 additions and 9 deletions
|
@ -1919,11 +1919,6 @@ void mb_cpu_dump_state(CPUState *cs, FILE *f, int flags)
|
|||
env->esr, env->fsr, env->btr, env->edr,
|
||||
env->ear, env->slr, env->shr);
|
||||
|
||||
for (i = 0; i < 12; i++) {
|
||||
qemu_fprintf(f, "rpvr%-2d=%08x%c",
|
||||
i, env->pvr.regs[i], i % 4 == 3 ? '\n' : ' ');
|
||||
}
|
||||
|
||||
for (i = 0; i < 32; i++) {
|
||||
qemu_fprintf(f, "r%2.2d=%08x%c",
|
||||
i, env->regs[i], i % 4 == 3 ? '\n' : ' ');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue