blob: d0f9cf9a978cc04bbeb76472081eb81434cbf9ef [file] [log] [blame]
(* blackbox *)
module skullfet_inverter (
`ifdef USE_POWER_PINS
input vss,
input vdd,
`endif // USE_POWER_PINS
input A,
output Y
);
endmodule
(* blackbox *)
module skullfet_nand (
`ifdef USE_POWER_PINS
input vss,
input vdd,
`endif // USE_POWER_PINS
input A,
input B,
output Y
);
endmodule
(* blackbox *)
module skullfet_logo (
`ifdef USE_POWER_PINS
input vss,
input vdd
`endif // USE_POWER_PINS
);
endmodule