aboutsummaryrefslogtreecommitdiffstats
path: root/generic/flow/bel-pin/design.v
blob: bcec0be0eb5106dbbc84aebd200401b7598a55f5 (plain)
1
2
3
4
5
6
7
(* blackbox *)
module TEST_BEL(input wire A, output wire Q);
endmodule

module top(output wire q);
TEST_BEL cell_i(.A(q), .Q(q));
endmodule