Skip to content

Latest commit

 

History

History

boolean-algebra

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Boolean algebra

Q = A*B+A'

The Truth Table and Schematic:

image1

VHDL Code:

q <= (a AND b) OR (NOT a);

Synthesis (extra NOT gates are due to the buttons' pull-up resistors and LED's connection to the chip):

image1-syn