-
Notifications
You must be signed in to change notification settings - Fork 0
/
ClkDiv_25MHz.v
54 lines (50 loc) · 1.43 KB
/
ClkDiv_25MHz.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 13:07:47 09/30/2017
// Design Name:
// Module Name: ClkDiv_25MHz
// Project Name:
// Target Devices:
// Tool versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module ClkDiv_25MHz(
CLK,
CLKOUT
);
// ====================================================================================
// Port Declarations
// ====================================================================================
input CLK; // 100MHz onboard clock // Reset
output CLKOUT; // New clock output
// ====================================================================================
// Parameters, Register, and Wires
// ====================================================================================
reg CLKOUT = 0;
reg flag = 1;
// ===================================================================================
// Implementation
// ===================================================================================
always @(posedge CLK)
begin
if (flag == 1)
begin
CLKOUT <= ~CLKOUT;
flag <= 0;
end
else
begin
flag <= 1;
end
end
endmodule