forked from github/verilator
52912c6329
- Change .cvsignore to .gitignore - Remove Id metacomments - Cleanup whitespace at end of lines
48 lines
821 B
Verilog
48 lines
821 B
Verilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
// without warranty, 2007 by Wilson Snyder.
|
|
|
|
module t (/*AUTOARG*/
|
|
// Inputs
|
|
clk
|
|
);
|
|
input clk;
|
|
|
|
integer cyc=0;
|
|
|
|
Testit testit (/*AUTOINST*/
|
|
// Inputs
|
|
.clk (clk));
|
|
|
|
always @ (posedge clk) begin
|
|
cyc <= cyc + 1;
|
|
if (cyc==0) begin
|
|
end
|
|
else if (cyc<10) begin
|
|
end
|
|
else if (cyc<90) begin
|
|
end
|
|
else if (cyc==99) begin
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
end
|
|
|
|
endmodule
|
|
|
|
module Testit (clk);
|
|
input clk;
|
|
|
|
genvar igen;
|
|
generate
|
|
for (igen=0; igen<0; igen=igen+1) begin : test_gen
|
|
always @ (posedge clk) begin
|
|
$display("igen1 = %d", igen);
|
|
$stop;
|
|
end
|
|
end
|
|
endgenerate
|
|
|
|
endmodule
|