Or Gate
Abstraction and Implementation of Or Gate in Hardware Design Language and Java™.
Last updated
Abstraction and Implementation of Or Gate in Hardware Design Language and Java™.
Last updated
The Or function returns 1 (true) when either of the inputs are 1 (true).
Or Gate can be implemented in two ways:
Or Gate can be implemented by connecting negation of first input and negation of second input to the either inputs of Nand Gate.
It can also be implemented by connecting first input to both inputs of first Nand Gate and second input to both inputs of second Nand Gate, and outputs of both to the either inputs of third Nand Gate.
Similar to the Implementation in HDL