mirror of
https://github.com/verilator/verilator.git
synced 2025-01-07 15:17:36 +00:00
ce10dbd11c
git-svn-id: file://localhost/svn/verilator/trunk/verilator@753 77ca24e4-aefa-0310-84f0-b9a241c72d87
34 lines
703 B
Verilog
34 lines
703 B
Verilog
// $Id:$
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
// without warranty, 2003 by Wilson Snyder.
|
|
|
|
`include "verilated.v"
|
|
|
|
module t_clk_two (/*AUTOARG*/
|
|
// Inputs
|
|
fastclk, reset_l
|
|
);
|
|
input fastclk;
|
|
input reset_l;
|
|
// verilator lint_off GENCLK
|
|
reg clk2;
|
|
// verilator lint_on GENCLK
|
|
reg [31:0] count;
|
|
|
|
wire reset_h = ~reset_l;
|
|
always @ (posedge fastclk) begin
|
|
if (reset_h) clk2 <= 0;
|
|
else clk2 <= ~clk2;
|
|
end
|
|
always @ (posedge clk2) begin
|
|
if (reset_h) count <= 0;
|
|
else count <= count + 1;
|
|
end
|
|
endmodule
|
|
|
|
// Local Variables:
|
|
// compile-command: "./vlint __FILE__"
|
|
// End:
|