Sign in
foss-fpga-tools
/
prjxray
/
f2d21573c7f6bdfa98e86fae5a2f5ef52e23b51c
/
.
/
minitests
/
fixedpnr
/
top_ldce.v
blob: a283c10809aaa7d1b08c85857c8b277b2d74cbaa [
file
] [
log
] [
blame
]
module
top
(
input clk
,
ce
,
sr
,
d
,
output q
);
(*
LOC
=
"SLICE_X16Y100"
,
BEL
=
"AFF"
,
DONT_TOUCH
*)
//Keep inverter off
LDCE_1 ff
(
.
G
(
clk
),
.
GE
(
ce
),
.
CLR
(
sr
),
.
D
(
d
),
.
Q
(
q
)
);
endmodule