0
682views
Design and implement one digit BCD tables.
1 Answer
0
5views

Solution:

Algorithm:

Step 1: Do normal Binary Addition.

Step 2: if sum > 9 or cy = 1 then

Add ‘6’ as correction factor

OR

If sum < 9 then final answer is valid BCD.

Designing a circuit which will detect sum > 9 or not.

enter image description here

$S_3 – S_0 \gt 9$ Error Logic ‘1’

$S_3 – S_0 \lt 9$ Logic ‘0’

enter image description here

enter image description here

enter image description here

Please log in to add an answer.