0
6.5kviews
4-bit binary to gray code converter.
1 Answer
0
196views

4-bit binary to gray code converter.

Step 1: Truth table.

| Input (Binary) | Output (Gray code) | |----|----|

- B3 B2 B1 B0 G3 G2 G1 GO
0 0 0 0 0 0 0 0 0
1 0 0 0 1 0 0 0 1
2 0 0 1 0 0 0 1 1
3 0 0 1 1 0 0 1 0
4 0 1 0 0 0 1 1 0
5 0 1 0 1 0 1 1 1
6 0 1 1 0 0 1 0 1
7 0 1 1 1 0 1 0 0
8 1 0 0 0 1 1 0 0
9 1 0 0 1 1 1 0 1
10 1 0 1 0 1 1 1 1
11 1 0 1 0 1 1 1 1
12 1 1 0 0 1 0 1 0
13 1 1 0 1 1 0 1 1
14 1 1 1 0 1 0 0 1
15 1 1 1 1 1 0 0 0

G3=m (8,9,10,11,12,13,14,15)

G2=m (4,5,6,7,8,9,10,11)

G1=m (2,3,4,5,1011,12,13)

G0=m (1,2,5,6,9,10,13,14)

Step 2: Simplification using K-maps

K-Map for G3

G3=B3

enter image description here

K-map for G2

G2=B3B2+B3B2

=B3 + B2

enter image description here

K-map for G1

G1=B2B1+B2B1

= B2 + B1

enter image description here

K-map for Go

Go=B1Bo+B1Bo

= B1 + Bo

enter image description here

Step 3: Logic gate implementation.

enter image description here

4-bit BCD adder using IC 7483 and necessary gate.

enter image description here

  • ABCD adder is a circuit that adds two BCD digits in parallel and produces a sum digit which is also in BCD.

  • This adder has two 4-bit BCD inputs X3X2X1X0 and Y3Y2Y1Y0 and a carry input (in). It also has 4-bit sum output (3210) and carry output (out)

  • ABCD adder circuit must be able to do the following:

1] Add two 4-bit BCD numbers using straight binary addition.

2] If the 4-bit sum is equal to or less than 9, the sum is in proper BCD form and no correction is needed.

3] If the 4-bit sum is greater than 9 or if a carry is generated from the sum, the sum is not in BCD form. then, the digit 6(0110) should be added to the sum to produce the BCD results. The carry may be produced due to this addition and it is added to the next decimal position.

  • The outputs of adder 1 (S3S2S1S0) and (out) are checked to ascertain whether the output is greater than 9 by AND - OR gate combinations.

  • If correction is required, then a 0110 is added with the output of adder 1.

  • The adder 2 output forms the BCD result (3210) with carry output (out).

Please log in to add an answer.