f4pga-examples/xc7/counter_test/counter.v
Tim 'mithro' Ansell 7b623cdfdf Remove the extra examples directory.
Signed-off-by: Tim 'mithro' Ansell <me@mith.ro>
2020-07-29 12:26:38 -07:00

22 lines
385 B
Verilog

module top (
input clk,
input rx,
output tx,
output [3:0] led
);
localparam BITS = 4;
localparam LOG2DELAY = 22;
wire bufg;
BUFG bufgctrl(.I(clk), .O(bufg));
reg [BITS+LOG2DELAY-1:0] counter = 0;
always @(posedge bufg) begin
counter <= counter + 1;
end
assign led[3:0] = counter >> LOG2DELAY;
assign tx = rx;
endmodule