blob: 86629a494c8a07a8b5fcdeb4ced58c73fc72b99a [file] [log] [blame]
module top(
input wire clk,
input wire [15:0] sw,
output wire [15:0] led,
input wire rx,
output wire tx
);
wire gclk;
BUFG bufg(.I(clk), .O(gclk));
(* LOC="SLICE_X29Y45" *)
FDCE #(
.INIT(0),
) fdse (
.Q (led[0]),
.C (gclk),
.CE (sw[0]),
.D (sw[1]),
.CLR(sw[2])
);
endmodule