Timeline for BCD to binary decoder?[SOLVED]
Current License: CC BY-SA 3.0
4 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Apr 6, 2018 at 17:40 | comment | added | Peter Green | Indeed, you could have a version with a reset input instead of a firstdigit input. You need something to end work on one number and start work on the next though. | |
| Apr 6, 2018 at 17:16 | comment | added | Chromatix | It's not necessary to distinguish the first digit from the rest, as long as you initialise the running result to zero before accepting any digits. The first step will then be "(0 * 10) + most-significant-digit". | |
| Apr 6, 2018 at 17:12 | comment | added | Konrad Zuse | Thank you, @Peter Green! Though I appreciate Tom Carpenter's solution a bit more, this one is also good for a sequential implementation. | |
| Apr 6, 2018 at 17:10 | history | answered | Peter Green | CC BY-SA 3.0 |