Sign in
foss-fpga-tools
/
prjxray
/
ff20da130cc35224f9873acfa6a032fa9e2f9734
/
.
/
minitests
/
srl
/
srl32_x1.v
blob: 2d30966218113cd0b99a0fc3ef8510da1a6d13c0 [
file
] [
log
] [
blame
]
module
top
(
(*
clock_buffer_type
=
"NONE"
*)
input wire CLK
,
input wire CE
,
input wire D
,
input wire
[
4
:
0
]
A
,
output wire Q
);
(*
LOC
=
"SLICE_X2Y0"
,
BEL
=
"A6LUT"
*)
SRLC32E srl_a
(
.
CLK
(
CLK
),
.
CE
(
CE
),
.
D
(
D
),
.
A
(
A
),
.
Q
(
Q
)
);
endmodule