mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 04:47:25 -04:00
Restore functionality of tracer
Tracer functionality is broken after transition to ibex. "operand_b_fw_id" is missing from instruction decoder.
This commit is contained in:
parent
c221046c0c
commit
9836ef883d
1 changed files with 2 additions and 0 deletions
|
@ -227,6 +227,7 @@ module ibex_id_stage #(
|
|||
op_fw_sel_e operand_a_fw_mux_sel;
|
||||
|
||||
logic [31:0] operand_a_fw_id;
|
||||
logic [31:0] operand_b_fw_id;
|
||||
|
||||
logic [31:0] alu_operand_a;
|
||||
logic [31:0] alu_operand_b;
|
||||
|
@ -304,6 +305,7 @@ module ibex_id_stage #(
|
|||
|
||||
// ALU_Op_b Mux
|
||||
assign alu_operand_b = (alu_op_b_mux_sel == OP_B_IMM) ? imm_b : regfile_data_rb_id;
|
||||
assign operand_b_fw_id = regfile_data_rb_id;
|
||||
|
||||
///////////////
|
||||
// Registers //
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue