0
2.2kviews
Design an even parity generator with 3 data bits.
1 Answer
0
192views

EVEN PARITY GENERATOR:

  • Let the 3 inputs be A, B & C.
  • And P is the Parity bit.
  • For anEVEN PARITY GENERATORthenumber of 1's including the parity bit should be even.
  • The truth table of an EVEN PARITY GENERATOR is given below-:
A B C P
0 0 0 0
0 0 1 1
0 1 0 2
0 1 1 3
1 0 0 4
1 0 1 5
1 1 0 6
1 1 1 7

* The design of anEven Parity Generatoris given below-:

EVEN PARITY GENERATOR USING 3:8 DECODER.

Please log in to add an answer.