Fix config

This commit is contained in:
Markus Wegmann 2017-01-09 14:36:01 +01:00
parent 2d8ed39de9
commit 1e4223ab84
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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