-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclk_diff.v
More file actions
35 lines (34 loc) · 910 Bytes
/
clk_diff.v
File metadata and controls
35 lines (34 loc) · 910 Bytes
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
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 08:40:36 09/23/2019
// Design Name:
// Module Name: clk_diff
// Project Name:
// Target Devices:
// Tool versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module clk_diff(
input clk200P,clk200N,
output clk200MHz
);
IBUFGDS #(
.DIFF_TERM("FALSE"), // Differential Termination
.IBUF_LOW_PWR("TRUE"), // Low power="TRUE", Highest performance="FALSE"
.IOSTANDARD("DEFAULT") // Specifies the I/O standard for this buffer
) IBUFGDS_inst (
.O(clk200MHz), // Clock buffer output
.I(clk200P), // Diff_p clock buffer input
.IB(clk200N) // Diff_n clock buffer input
);
endmodule