From 08f535ebb2d371e4792f600988d71f69a67a31bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20W=C3=B6lfel?= Date: Mon, 1 Jul 2019 15:30:26 +0200 Subject: [PATCH] Fix updated signal name --- rtl/ibex_core.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/ibex_core.sv b/rtl/ibex_core.sv index af52289f..f528a859 100644 --- a/rtl/ibex_core.sv +++ b/rtl/ibex_core.sv @@ -674,7 +674,7 @@ module ibex_core #( assign rvfi_valid_int = id_valid && if_valid && !illegal_c_insn_id; always_comb begin - if (is_compressed_id) begin + if (instr_is_compressed_id) begin rvfi_insn_opcode = {16'b0, instr_rdata_c_id}; end else begin rvfi_insn_opcode = instr_rdata_id;