And how would one do so?
I'm doing a programming project that requires me to propagate input signals through a circuit consisting of different types of logic gates. One of the gates I need to implement is a custom one whose truth table is:
+---------+---------+---------+--------+ | Input 1 | Input 2 | Input 3 | Output | +---------+---------+---------+--------+ | 0 | 0 | 0 | 1 | | 0 | 0 | 1 | 1 | | 0 | 1 | 0 | 0 | | 0 | 1 | 1 | 0 | | 1 | 0 | 0 | 1 | | 1 | 0 | 1 | 0 | | 1 | 1 | 0 | 0 | | 1 | 1 | 1 | 0 | +---------+---------+---------+--------+ I'm not terribly familiar with boolean functions, digital logic, etc. so any help or insight is greatly appreciated.