Remove empty tasks from ibex_icache_base_vseq.sv

These aren't needed, so no reason to keep the scaffolding.
This commit is contained in:
Rupert Swarbrick 2020-06-17 12:45:47 +01:00 committed by Rupert Swarbrick
parent 0044ea35f9
commit dc708427d0

View file

@ -30,10 +30,6 @@ class ibex_icache_base_vseq
// sequence.
constraint num_trans_c { num_trans inside {[800:1000]}; }
virtual task dut_init(string reset_kind = "HARD");
super.dut_init();
endtask
virtual task pre_start();
super.pre_start();
@ -93,9 +89,4 @@ class ibex_icache_base_vseq
end join_none
endtask
virtual task dut_shutdown();
// check for pending ibex_icache operations and wait for them to complete
// TODO
endtask
endclass : ibex_icache_base_vseq