mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 04:47:25 -04:00
Fix config
This commit is contained in:
parent
2d8ed39de9
commit
1e4223ab84
2 changed files with 3 additions and 3 deletions
|
@ -147,7 +147,7 @@ module riscv_decoder
|
|||
output logic [1:0] jump_in_dec_o, // jump_in_id without deassert
|
||||
output logic [1:0] jump_in_id_o // jump is being calculated in ALU
|
||||
// CONFIG_REGION: NO_JUMP_ADDER
|
||||
`ifdef NO_JUMP_ADDER
|
||||
`ifndef NO_JUMP_ADDER
|
||||
,
|
||||
output logic [1:0] jump_target_mux_sel_o // jump target selection
|
||||
`endif
|
||||
|
@ -188,7 +188,7 @@ module riscv_decoder
|
|||
begin
|
||||
jump_in_id = BRANCH_NONE;
|
||||
// CONFIG_REGION: NO_JUMP_ADDER
|
||||
`ifdef NO_JUMP_ADDER
|
||||
`ifndef NO_JUMP_ADDER
|
||||
jump_target_mux_sel_o = JT_JAL;
|
||||
`endif
|
||||
|
||||
|
|
|
@ -1211,7 +1211,7 @@ module riscv_id_stage
|
|||
.jump_in_dec_o ( jump_in_dec ),
|
||||
.jump_in_id_o ( jump_in_id )
|
||||
// CONFIG_REGION: NO_JUMP_ADDER
|
||||
`ifdef NO_JUMP_ADDER
|
||||
`ifndef NO_JUMP_ADDER
|
||||
,
|
||||
.jump_target_mux_sel_o ( jump_target_mux_sel )
|
||||
`endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue