Skip to content

Commit

Permalink
[dv] Remove phase argument from collect_trans
Browse files Browse the repository at this point in the history
This commit applies the patch from lowRISC/opentitan@18b0ced to the Ibex
repository.

Signed-off-by: Pascal Nasahl <[email protected]>
  • Loading branch information
nasahlpa committed Jun 4, 2024
1 parent 6960cbb commit fdcc7e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ibex_icache_core_monitor extends dv_base_monitor #(
endtask

// collect transactions forever - already forked in dv_base_moditor::run_phase
virtual protected task collect_trans(uvm_phase phase);
virtual protected task collect_trans();
ibex_icache_core_bus_item trans;
logic last_inval = 0;
logic last_enable = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class ibex_icache_mem_monitor
endtask

// Collect transactions forever. Forked in dv_base_moditor::run_phase
protected task automatic collect_trans(uvm_phase phase);
protected task automatic collect_trans();
fork
collect_grants();
collect_responses();
Expand Down

0 comments on commit fdcc7e8

Please sign in to comment.