diff options
author | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2019-10-30 13:55:08 +0100 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2020-04-30 12:11:03 +0200 |
commit | 5143fdf36f78bd4c11c4bacedfdbd44365aa5781 (patch) | |
tree | 9ad252430e121a83f7814e7a6b2d2431a3cb2f7e /target/microblaze/cpu.h | |
parent | 1ee1bd28fcce858e6f51d2d1d6ef9048bc254b86 (diff) | |
download | qemu-5143fdf36f78bd4c11c4bacedfdbd44365aa5781.zip qemu-5143fdf36f78bd4c11c4bacedfdbd44365aa5781.tar.gz qemu-5143fdf36f78bd4c11c4bacedfdbd44365aa5781.tar.bz2 |
target/microblaze: Add the ill-opcode-exception property
Add the ill-opcode-exception property to control if illegal
instructions will raise exceptions.
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Luc Michel <luc.michel@greensocs.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
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 d51587b..71d7317 100644 --- a/target/microblaze/cpu.h +++ b/target/microblaze/cpu.h @@ -303,6 +303,7 @@ struct MicroBlazeCPU { bool endi; bool dopb_bus_exception; bool iopb_bus_exception; + bool illegal_opcode_exception; bool opcode_0_illegal; char *version; uint8_t pvr; |