diff options
author | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2017-06-20 13:06:44 +0200 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2017-07-04 09:22:20 +0200 |
commit | 9b9643181a2324f4ecefd39367fd83be2ba837d6 (patch) | |
tree | 95f36212d991b308d608e095f1c0ab4d29f66152 /target/microblaze/cpu.h | |
parent | 47709e4c66239819cfe2e965e6aa30b646c09ad6 (diff) |
target-microblaze: Introduce a use-hw-mul property
Introduce a use-div property making multiplication instructions
optional.
Reviewed-by: Alistair Francis <alistair.francis@xilinx.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 4397338479..e202229c08 100644 --- a/target/microblaze/cpu.h +++ b/target/microblaze/cpu.h @@ -298,6 +298,7 @@ struct MicroBlazeCPU { bool stackprot; uint32_t base_vectors; uint8_t use_fpu; + uint8_t use_hw_mul; bool use_barrel; bool use_div; bool use_mmu; |