mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
target-microblaze: Tidy up the base-vectors property
Rename the "xlnx.base-vectors" string to "base-vectors" and move the base_vectors variable into the cfg struct. Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
This commit is contained in:
parent
9aaaa18194
commit
f27183abaa
3 changed files with 8 additions and 7 deletions
|
@ -56,12 +56,13 @@ typedef struct MicroBlazeCPUClass {
|
|||
typedef struct MicroBlazeCPU {
|
||||
/*< private >*/
|
||||
CPUState parent_obj;
|
||||
uint32_t base_vectors;
|
||||
|
||||
/*< public >*/
|
||||
|
||||
/* Microblaze Configuration Settings */
|
||||
struct {
|
||||
bool stackprot;
|
||||
uint32_t base_vectors;
|
||||
} cfg;
|
||||
|
||||
CPUMBState env;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue