I know that the expression itself can easily be implemented with an AND and a NOR gate.
X = A AND BY = C NOR X
My CMOS gate implementations consist of 5T for my AND gate, and 4T for my NOR gate. Combining these together gives me the working functionality for the expression. It satisfies this truth table:
A B C | Y ------|--- 0 0 0 | 1 0 0 1 | 0 0 1 0 | 1 0 1 1 | 0 1 0 0 | 1 1 1 0 | 0 1 0 1 | 0 1 1 1 | 0 I want to be able to reduce this down to using only 6T CMOS.
I'm struggling to figure out how to reduce this from 9T down to 6T CMOS, and I'm not sure how to draw the CMOS transistor wiring diagram, schematic, the PDN & PUN with its connected output. I'm overlooking something, but I just can't seem to see it.

