blob: b867c024eadcd44c84d66272a9ff3e4054c62822 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
//
// (c) 2014 Timothy Pearson, Raptor Engineering
// Released into the Public Domain
//
//////////////////////////////////////////////////////////////////////////////////
module main_clock_generator(
input clkin,
output clkout,
output online);
assign online = 1'b1;
BUFG BUFG_inst (
.O(clkout), // 1-bit output: Clock buffer output
.I(clkin) // 1-bit input: Clock buffer input
);
endmodule
|