mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
target/microblaze: Split out PC from env->sregs
Begin eliminating the sregs array in favor of individual members. Does not correct the width of pc, yet. 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
8a42ddf013
commit
76e8187d00
9 changed files with 42 additions and 37 deletions
|
@ -75,7 +75,7 @@ void helper_debug(CPUMBState *env)
|
|||
{
|
||||
int i;
|
||||
|
||||
qemu_log("PC=%" PRIx64 "\n", env->sregs[SR_PC]);
|
||||
qemu_log("PC=%" PRIx64 "\n", env->pc);
|
||||
qemu_log("rmsr=%" PRIx64 " resr=%" PRIx64 " rear=%" PRIx64 " "
|
||||
"debug[%x] imm=%x iflags=%x\n",
|
||||
env->sregs[SR_MSR], env->sregs[SR_ESR], env->sregs[SR_EAR],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue