Chapter 3 Common Digital Components
Chapter 3 Common Digital Components
Chapter Three
Digital Components
Topics covered:
Course outline and schedule
Introduction
Digital Components
Contents
Integrated circuits
Decoder
Encoders
Multiplexer
Register
Binary Counter
Memory Unit
2
Integrated circute
3
Cont…
4
Cont…
5
Decoder, Multiplexer and Registers
Decoders
A decoder is a combinational circuit that converts
binary information from ‘n’ coded input to maximum
2n outputs.
Commercial decoders include one or more enable (E)
inputs to control the operation of circuit.
The decode is enabled when E is equal to 1 and
disabled when E is equal to 0.
Used in code converters.
Used to Boolean functions.
6
Cont…
7
Cont…
8
Cont…
The truth table for a 2-to-4 line decoder can be represented as:
E A1 A0 D0 D1 D2 D3
0 0 0 0 1 1 1
0 0 1 1 0 1 1
0 1 0 1 1 0 1
0 1 1 1 1 1 0
1 0 0 1 1 1 1
It is also possible to combine two or more decoders to form a large decode
whenever needed. For instance, we can construct a 3 * 8 decoder by combi
two 2 *4 decoders.
9
Cont…
10
Cont…
Encoder
An encoder is a digital circuit that performs the inverse
operation of decoder.
An encoder has 2n inputs lines and ‘n’ output lines.
It converts octal input to binary digits.
Types:
Priority encoders
Decimal to BCD encoder.
Octal to binary encoder.
Hexadecimal to binary encoder.
The above image shows the block diagram of a 4 * 2 encoder
with four input and two output lines.
11
Example
12
Cont…
Multiplexer
A multiplexer is a combinational circuit that receives
binary information from one of the 2n input lines and
directs it to a single output line.
Advantages:
It reduce number of wires.
Circuit is less complex.
Less costly.
It is used to implement many circuits.
13
Register
Register
A register is a group of flip-flops with each flip-flop
capable of storing one bit of information.
The register is mainly used for sequential circuit and
an important building block used in digital system
like multipliers, dividers, memories, microprocessors,
etc.
14
Cont…
15
Shift – Registers
16
Cont…
17
Memory Units
Byte
3 A group of 8 bits is called byte. A byte is the smallest unit, which can represent a
data item or a character.
Word
A computer word, like a byte, is a group of fixed number of bits processed as a unit,
which varies from computer to computer but is fixed for each computer.
4
The length of a computer word is called word-size or word length. It may be as small
as 8 bits or may be as long as 96 bits. A computer stores the information in the form
of computer words.
18
End !!
19