Question:
Implement $F(A,B,C,D)=AB\bar{C}D+A\bar{D}+\bar{A}D$ using only AND & XOR gates
My try:
I know that $A\bar{D}+\bar{A}D$ functions like a XOR gate which takes $A$ and $D$ as input. But then I don't know what to do which the part $+AB\bar{C}D$. I mean, with this method, I'm stuck on designing the OR gate.
I also tried using the Karnaugh map to simplify the equation but the result didn't help me either.
It seems that there's no way to get rid of the OR gate...
Any idea on this implementation?
Thanks in advance.