diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2020-08-19 21:58:40 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2020-09-01 07:41:38 -0700 |
commit | 6fbf78f24a43c57925dc4e789dc236cdec443987 (patch) | |
tree | 3b3805da69953db360a4cf6fdf3761978d94858f /target/microblaze/cpu.h | |
parent | 5a8e01366c5dfe93f608e7d37f385962495d5161 (diff) | |
download | qemu-6fbf78f24a43c57925dc4e789dc236cdec443987.zip |
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>
Diffstat (limited to 'target/microblaze/cpu.h')
-rw-r--r-- | target/microblaze/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/microblaze/cpu.h b/target/microblaze/cpu.h index bcafef99b0..deddb47abb 100644 --- a/target/microblaze/cpu.h +++ b/target/microblaze/cpu.h @@ -241,6 +241,7 @@ struct CPUMBState { uint64_t ear; uint64_t esr; uint64_t fsr; + uint64_t btr; uint64_t sregs[14]; float_status fp_status; /* Stack protectors. Yes, it's a hw feature. */ |