pc3cl3.v 242 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 module pc3cl3 (cp, cclk, e, clkpwr, clkgnd); input cclk; input e; output clkpwr; output clkgnd; supply1 clkpwr; supply0 clkgnd; output cp; wire ce; assign ce = cclk ? ce : e; and G2 (cp, cclk, ce); endmodule