Design a circuit that accepts a three bit binary number as input, and produces a three bit output that is double the input value. Ignore the most significant bit for results of eight or more, since you are delivering a three bit output. In other words, your circuit output is the three least significant bits of the result. Examples: An input of 011 (3 in decimal) should produce an output of 110 (6). An input of 110 (6 in decimal) should produce an output of 100 (4 in decimal). Why is that? While the proper arithmetic result should be 1100 (12 in decimal), your circuit can deliver only three bits as output, therefore the leading one is lost. That leading one represents a value of 8, correct? So losing the 8 leaves a remainder of 4. The same thing happens in registers when a result exceeds the bit capacity of the register. Your solution must include a truth table and K-Maps for the three output functions. You do not need to draw a logic diagram.
Comments
Leave a comment