Page 1 of 1

8-line to hex reader

Posted: Sun Jun 25, 2017 12:01 pm
by dprefont
I would like to be able to read 8 address lines and output a hex byte value representing the state of those 8 address lines, e.g., 0111 1110 would show as 0x7E. Or, using two devices, read 4 address lines each and output a hex nibble value each. Does an IC exist that either does this function or can be coerced into performing part of the function? Thanks.

Re: 8-line to hex reader

Posted: Mon Jun 26, 2017 4:55 am
by n1ist
What do you mean by "show"? You can easily do this with any small micro (PIC, AVR, MSP, etc. ) that has enough pins for the 8 input bits and the display or output device (you can always add a latching shift register to save on the input pins).

Back in the old days, we would use a 74S89 PROM or DM9368 hex-to-7segment decoder to drive a display or a TIL-311 display that had the decoder built in. If you don't mind HELP instead of A-F, even the 7447 would work.

/mike

Re: 8-line to hex reader

Posted: Mon Jun 26, 2017 5:33 am
by dprefont
Thanks, Mike.

Re: 8-line to hex reader

Posted: Mon Jun 26, 2017 6:50 pm
by jremington
Consider the 74lv(or hc)165 8 bit parallel in serial out shift register.

Re: 8-line to hex reader

Posted: Tue Jun 27, 2017 11:40 am
by dprefont
Thanks, J. I'll consider sending its output to a 595 and dual LED.