mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
Adding indication that test started for regression clarity
This commit is contained in:
parent
84e8449cb5
commit
9ac530e526
@ -105,8 +105,12 @@ module oh_simctrl #( parameter CFG_CLK1_PERIOD = 10,
|
||||
always @ (posedge clk1 or negedge nreset)
|
||||
if(!nreset)
|
||||
start <= 1'b0;
|
||||
else if(dut_active)
|
||||
start <= 1'b1;
|
||||
else if(dut_active & ~start)
|
||||
begin
|
||||
$display("-------------------");
|
||||
$display("TEST %0s STARTED", testname);
|
||||
start <= 1'b1;
|
||||
end
|
||||
|
||||
//STOP SIMULATION ON END
|
||||
always @ (posedge clk1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user