25 lines
		
	
	
	
		
			518 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			518 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
categories:
 | 
						|
  - Computer Architecture
 | 
						|
  - Electronics
 | 
						|
  - Hardware
 | 
						|
tags: [logic-gates, binary]
 | 
						|
---
 | 
						|
 | 
						|
# 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.
 | 
						|
 | 
						|

 | 
						|
 | 
						|
````
 | 
						|
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
 |