In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs...

17
BASIC LOGIC GATES

Transcript of In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs...

Page 1: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

BASIC LOGIC GATES

Page 2: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these devices contain only a maximum of 10 transistorized components inside, these chips normally contain a function used in boolean algebra. Switching functions using boolean algebra is the simplest operation used in digital circuits, since it only involves a zero (0) and a one (1) much like the false (if zero) and true (if one) signals of boolean algebra

Page 3: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

THE NOT GATE This type of gate accepts a single input

(either a logic ‘0’ or a logic ‘1’) and inverts the signal.

YA

Page 4: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

The truth table for that gate is summarized as follows:

In equation form Y = A

INPUT(A)

OUTPUT(Y)

‘0’ ‘1’

‘1’ ‘0’

Page 5: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

THE AND GATE This type of gate has two or more

inputs, and if we follow simple logic, this implies the statement if any among the list is false, then the expression is false.

Page 6: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

The truth table for that gate is summarized as follows:

In equation form Y = A ● B One can extend this to n inputs by using

the following equation Y = A ● B ● C …….

AND GATEINPUT(A)

INPUT(B)

OUTPUT(Y)

‘0’ ‘0’ ‘0’

‘0’ ‘1’ ‘0’

‘1’ ‘0’ ‘0’

‘1’ ‘1’ ‘1’

Page 7: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

THE OR GATE This is type of gate has two or more

inputs, and if we follow simple logic, this implies the statement if any among the list is true, then the expression is true.

A

B

Y

Page 8: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

The truth table for that gate is summarized as follows:

In equation form Y = A + B One can extend this to n inputs by using

the following equation Y = A + B + C …….

INPUT(A)

INPUT(B)

OUTPUT(Y)

‘0’ ‘0’ ‘0’

‘0’ ‘1’ ‘1’

‘1’ ‘0’ ‘1’

‘1’ ‘1’ ‘1’

Page 9: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

THE NAND GATE This type of gate has two or more

inputs, and it does the opposite of the AND gate. if any among the list is false, then the expression is true.

Page 10: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

The truth table for that gate is summarized as follows:

In equation form Y = A ● B One can extend this to n inputs by using

the following equation Y = A ● B ● C …….

INPUT(A)

INPUT(B)

OUTPUT(Y)

‘0’ ‘0’ ‘1’

‘0’ ‘1’ ‘1’

‘1’ ‘0’ ‘1’

‘1’ ‘1’ ‘0’

Page 11: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

THE NOR GATE This type of gate has two or more

inputs, and it does the opposite of OR. if any among the list is true, then the expression is false

Page 12: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

The truth table for that gate is summarized as follows:

In equation form Y = A + B One can extend this to n inputs by using

the following equation Y = A + B + C …….

INPUT(A)

INPUT(B)

OUTPUT(Y)

‘0’ ‘0’ ‘0’

‘0’ ‘1’ ‘0’

‘1’ ‘0’’ ‘0’

‘1’ ‘1’ ‘0’

Page 13: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

THE XOR GATE This type of gate has two or more

inputs, and it follows the exclusive OR Logic. This mean if the inputs are similar, the output is ‘0’. If the inputs are not similar then the output is ‘1’.

Page 14: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

The truth table for that gate is summarized as follows:

In equation form Y = A B One can extend this to n inputs by using

the following equation Y = A B C …….

INPUT(A)

INPUT(B)

OUTPUT(Y)

‘0’ ‘0’ ‘0’

‘0’ ‘1’ ‘1’

‘1’ ‘0’ ‘1’

‘1’ ‘1’ ‘0’

Page 15: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

THE XNOR GATE This type of gate has two or more

inputs, and it does the opposite or XOR. This mean if the inputs are not similar, the output is ‘0’. If the inputs are similar then the output is ‘1’.

Page 16: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

The truth table for that gate is summarized as follows:

In equation form Y = A B One can extend this to n inputs by using

the following equation Y = A B C …….

INPUT(A)

INPUT(B)

OUTPUT(Y)

‘0’ ‘0’ ‘1’

‘0’ ‘1’ ‘0’

‘1’ ‘0’ ‘0’

‘1’ ‘1’ ’1’

Page 17: In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.

EXAMPLE