Modifying outputs of 3-to-8 decoder

Thread Starter

dnkschn

Joined Mar 29, 2009
8
Hi fellas,

Assume we have a 3-to-8 decoder and the outputs should look like this:

When input is 000 output will be 10000000
.................. 001 .................. 11000000
.................. 010 .................. 11100000
.................. 011 .................. 11110000
.................. 100 .................. 11111000
.................. 101 .................. 11111100
.................. 110 .................. 11111110
.................. 111 .................. 11111111 -> (the outputs labeled as f0f1...f7)

How can i get this result? You have any suggestions?
 

Wendy

Joined Mar 24, 2008
23,429
I believe if you use a standard decoder, such as a CD4514, and follow it with XOR gates (taking the least significant bit high on the bottom XOR gate, the spare input) you will get what you're after.
 
Top