mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +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
|
(instrs <= 100000 && instrs % 10000 == 0) || (instrs <= 1000000 && instrs % 100000 == 0)) begin
|
||||||
$display("loaded %0d instructions", instrs);
|
$display("loaded %0d instructions", instrs);
|
||||||
end
|
end
|
||||||
|
// TEMP
|
||||||
|
if (instrs >= 800010) begin
|
||||||
|
$stop;
|
||||||
|
end
|
||||||
instrs += 1;
|
instrs += 1;
|
||||||
// are we at a branch/jump?
|
// are we at a branch/jump?
|
||||||
casex (lastCheckInstrD[31:0])
|
casex (lastCheckInstrD[31:0])
|
||||||
|
Loading…
Reference in New Issue
Block a user