[dv] Fix bad reference to instr_req_out

instr_req_out no longer exists now PMP is handled on the IF/ID
interface.
This commit is contained in:
Greg Chadwick 2021-12-10 10:01:08 +00:00 committed by Greg Chadwick
parent 72a892d62c
commit f1cd3bffc6

View file

@ -212,7 +212,7 @@ module core_ibex_tb_top;
assign ifetch_if.fetch_err_plus2 = dut.u_ibex_top.u_ibex_core.if_stage_i.fetch_err_plus2;
assign ifetch_pmp_if.reset = ~dut.u_ibex_top.u_ibex_core.if_stage_i.rst_ni;
assign ifetch_pmp_if.fetch_valid = dut.u_ibex_top.u_ibex_core.instr_req_out;
assign ifetch_pmp_if.fetch_valid = dut.u_ibex_top.u_ibex_core.instr_req_o;
assign ifetch_pmp_if.fetch_addr = dut.u_ibex_top.u_ibex_core.instr_addr_o;
assign ifetch_pmp_if.fetch_pmp_err = dut.u_ibex_top.u_ibex_core.pmp_req_err[ibex_pkg::PMP_I];