mirror of https://github.com/openXC7/prjxray.git
26 lines
319 B
Verilog
26 lines
319 B
Verilog
|
|
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 #
|
||
|
|
(
|
||
|
|
.INIT(32'hF0F01030)
|
||
|
|
)
|
||
|
|
srl_a
|
||
|
|
(
|
||
|
|
.CLK (CLK),
|
||
|
|
.CE (CE),
|
||
|
|
.D (D),
|
||
|
|
.A (A),
|
||
|
|
.Q (Q)
|
||
|
|
);
|
||
|
|
|
||
|
|
endmodule
|