mirror of
https://github.com/verilator/verilator.git
synced 2025-01-08 15:47:36 +00:00
2ce30e78a1
git-svn-id: file://localhost/svn/verilator/trunk/verilator@843 77ca24e4-aefa-0310-84f0-b9a241c72d87
30 lines
634 B
Verilog
30 lines
634 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
|