We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf03665 commit fd46ccaCopy full SHA for fd46cca
template/test_coram.txt
@@ -1201,7 +1201,7 @@ module test;
1201
end
1202
endtask
1203
1204
- integer i;
+ integer cycle_count;
1205
1206
initial begin
1207
if(SINGLE_CLOCK &&
@@ -1292,11 +1292,11 @@ module test;
1292
1293
nclk();
1294
1295
- for(i=0; i<SIM_CYCLE; i=i+1) begin
+ for(cycle_count=0; cycle_count<SIM_CYCLE; cycle_count=cycle_count+1) begin
1296
1297
1298
1299
- $display("[CoRAM] time:%d simulation time out. cycle:%d", $stime, i);
+ $display("[CoRAM] time:%d simulation time out. cycle:%d", $stime, cycle_count);
1300
$finish;
1301
1302
0 commit comments