aboutsummaryrefslogtreecommitdiffstats
path: root/generic/examples/simple.v
blob: 6d337101fec9cf17d1b1983e5e05d080c060cb1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(* blackbox *)
module SLICE_LUT4(
	input I0, I1, I2, I3,
	input CLK,
	output Q
);
parameter INIT = 16'h0000;
parameter FF_USED = 1'b0;
endmodule

module top(input a, output q);

SLICE_LUT4 sl_i(.I0(a), .Q(q));

endmodule