yosys4gal/techmaps/olmc_comb.v

34 lines
492 B
Coq
Raw Normal View History

2024-04-04 06:33:47 +00:00
(* techmap_celltype = "GAL_COMB_OUTPUT_P" *)
module _80_GAL_COMB_OUTPUT_P (A, Y);
input A, Y;
generate
GAL_OLMC #(
.REGISTERED(1'b0),
.INVERTED(1'b0)
) _TECHMAP_REPLACE_ (
.C(1'bX),
2024-04-04 17:02:51 +00:00
.E(1'b1),
2024-04-04 06:33:47 +00:00
.A(A),
.Y(Y)
);
endgenerate
endmodule
(* techmap_celltype = "$_NOT_" *)
module _80_NOT (A, Y);
input A, Y;
generate
GAL_OLMC #(
.REGISTERED(1'b0),
.INVERTED(1'b1)
) _TECHMAP_REPLACE_ (
.C(1'bX),
2024-04-04 17:02:51 +00:00
.E(1'b1),
2024-04-04 06:33:47 +00:00
.A(A),
.Y(Y)
);
endgenerate
endmodule