Sign in
foss-fpga-tools
/
symbiflow-arch-defs
/
refs/heads/main
/
.
/
xilinx
/
xc7
/
tests
/
gclk_active
/
gclk_through.v
blob: 8e8697bc3053af405ab37f60781fe18612e3031d [
file
] [
log
] [
blame
] [
edit
]
module
top
(
input wire clk
,
output wire
out
);
// ============================================================================
wire clk_g
;
(*
LOC
=
"BUFGCTRL_X0Y0"
*)
BUFG bufg1
(.
I
(
clk
),
.
O
(
clk_g
));
assign
out
=
clk_g
;
endmodule