Javatpoint Logo
Javatpoint Logo

Decoders

A Decoder can be described as a combinational circuit that converts binary information from the 'n' coded inputs to a maximum of 2^n different outputs.

Note: A binary code of n bits is capable of representing up to 2^n distinct elements of the coded information.

The most preferred or commonly used decoders are n-to-m decoders, where m<= 2^n.

An n-to-m decoder has n inputs and m outputs and is also referred to as an n * m decoder.

The following image shows a 3-to-8 line decoder with three input variables which are decoded into eight output, each output representing one of the combinations of the three binary input variables.

Decoders

The three inverter gates provide the complement of the inputs corresponding to which the eight AND gates at the output generates one binary combination for each input.

The most common application of this decoder is binary-to-octal conversion.

The truth table for a 3-to-8 line decoder can be represented as:

x y z D0 D1 D2 D3 D4 D5 D6 D7
0 0 0 1 0 0 0 0 0 0 0
0 0 1 0 1 0 0 0 0 0 0
0 1 0 0 0 1 0 0 0 0 0
0 1 1 0 0 0 1 0 0 0 0
1 0 0 0 0 0 0 1 0 0 0
1 0 1 0 0 0 0 0 1 0 0
1 1 0 0 0 0 0 0 0 1 0
1 1 1 0 0 0 0 0 0 0 1

Let us consider an example of 2-to-4 line NAND Gate Decoder which uses NAND Gates instead of AND gate in the central logic.

The following image shows a 2-to-4 line decoder with NAND gates.

Decoders

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 decoder whenever needed. For instance, we can construct a 3 * 8 decoder by combining two 2 *4 decoders.

The following image shows a 3 * 8 decoder constructed with two 2 * 4 decoders.

Decoders
Next TopicEncoders





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA