forked from Github_Repos/cvw
Fixed recurrent issue with testbench where it would never stop
This commit is contained in:
parent
8c84d5fdc7
commit
3fe78c9084
@ -666,7 +666,7 @@ module testbench;
|
||||
// turn on waves
|
||||
if (AttemptedInstructionCount == INSTR_WAVEON) $stop;
|
||||
// end sim
|
||||
if ((AttemptedInstructionCount == INSTR_LIMIT) & (INSTR_LIMIT!=0)) $stop;
|
||||
if ((AttemptedInstructionCount == INSTR_LIMIT) & (INSTR_LIMIT!=0)) begin $stop; $stop; end
|
||||
fault = 0;
|
||||
if (`DEBUG_TRACE >= 1) begin
|
||||
`checkEQ("PCW",PCW,ExpectedPCW)
|
||||
|
Loading…
Reference in New Issue
Block a user