mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-30 16:34:28 +00:00
busybear: temporary stop after 800k instrs
This commit is contained in:
parent
e04ad8f304
commit
2f503ee6b9
@ -444,6 +444,10 @@ module testbench_busybear();
|
||||
(instrs <= 100000 && instrs % 10000 == 0) || (instrs <= 1000000 && instrs % 100000 == 0)) begin
|
||||
$display("loaded %0d instructions", instrs);
|
||||
end
|
||||
// TEMP
|
||||
if (instrs >= 800010) begin
|
||||
$stop;
|
||||
end
|
||||
instrs += 1;
|
||||
// are we at a branch/jump?
|
||||
casex (lastCheckInstrD[31:0])
|
||||
|
Loading…
Reference in New Issue
Block a user