mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
target/microblaze: Split out BTR from env->sregs
Continue eliminating the sregs array in favor of individual members. Does not correct the width of BTR, 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
5a8e01366c
commit
6fbf78f24a
4 changed files with 9 additions and 6 deletions
|
@ -74,7 +74,7 @@ int mb_cpu_gdb_read_register(CPUState *cs, GByteArray *mem_buf, int n)
|
|||
val = env->fsr;
|
||||
break;
|
||||
case GDB_BTR:
|
||||
val = env->sregs[SR_BTR];
|
||||
val = env->btr;
|
||||
break;
|
||||
case GDB_PVR0 ... GDB_PVR11:
|
||||
/* PVR12 is intentionally skipped */
|
||||
|
@ -130,7 +130,7 @@ int mb_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n)
|
|||
env->fsr = tmp;
|
||||
break;
|
||||
case GDB_BTR:
|
||||
env->sregs[SR_BTR] = tmp;
|
||||
env->btr = tmp;
|
||||
break;
|
||||
case GDB_PVR0 ... GDB_PVR11:
|
||||
/* PVR12 is intentionally skipped */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue