mirror of
https://github.com/annoyatron255/yosys4gal.git
synced 2024-12-22 18:52:23 +00:00
34 lines
492 B
Verilog
34 lines
492 B
Verilog
(* 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),
|
|
.E(1'b1),
|
|
.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),
|
|
.E(1'b1),
|
|
.A(A),
|
|
.Y(Y)
|
|
);
|
|
endgenerate
|
|
endmodule
|