eolas/Hardware/Logic_Gates/Or_gate.md

26 lines
518 B
Markdown
Raw Normal View History

2022-06-04 17:30:04 +01:00
---
2022-08-20 12:30:04 +01:00
categories:
- Computer_Architecture
2022-06-04 17:30:04 +01:00
- Electronics
- Hardware
2022-08-20 12:30:04 +01:00
tags: [logic_gates, binary]
2022-06-04 17:30:04 +01:00
---
# OR gate
> `OR` (in logic known as **disjunction**) in its non-exclusive form is `true` if either of its propositions are `true` or both are `true` . It is `false` otherwise.
![Pasted image 20220319173819.png](../../img/Pasted_image_20220319173819.png)
````
p q p v q
_ _ _____
t t t
t f t
f t t
f f f
````
TO DO: Add circuit diagram for OR gate