We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29f9324 commit 587e9feCopy full SHA for 587e9fe
dv/uvm/core_ibex/common/ibex_mem_intf_agent/ibex_mem_intf_request_driver.sv
@@ -82,9 +82,10 @@ class ibex_mem_intf_request_driver extends uvm_driver #(ibex_mem_intf_seq_item);
82
rdata_queue.get(tr);
83
vif.wait_clks(1);
84
while((vif.rvalid !== 1'b1 || vif.spurious_response === 1'b1)) vif.wait_clks(1);
85
- if(tr.read_write == READ)
+ if (tr.read_write == READ) begin
86
tr.data = vif.request_driver_cb.rdata;
87
tr.intg = vif.request_driver_cb.rintg;
88
+ end
89
seq_item_port.put_response(tr);
90
end
91
endtask : collect_response
0 commit comments