mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
Fixing non-blocking bug in dv
This commit is contained in:
parent
bfb03e31b3
commit
9e7e771898
@ -90,9 +90,9 @@ module dv_ctrl(/*AUTOARG*/
|
||||
//START TEST
|
||||
always @ (posedge clk1 or negedge nreset)
|
||||
if(!nreset)
|
||||
start = 1'b0;
|
||||
start <= 1'b0;
|
||||
else if(dut_active)
|
||||
start = 1'b1;
|
||||
start <= 1'b1;
|
||||
|
||||
//STOP SIMULATION
|
||||
always @ (posedge clk1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user