组合电路设计题。
A
____
| |
F | | B
| |
____
| G |
E | | C
| |
____
D
Suppose this is a LED display. It would take input of 4 bit
(0000)-(1111) and display the Hex of it. For example
if (1100) come in it would display C by turning on AFED and turning off BCG.
If (1010) comes in it would display A by turning on ABCEFG
and turn off D.
These display will all be Capital letters so there is no visual
difference between 0 and D and 8 and B.
Develop a truth table and an optimized expression using Karnaugh Maps.
我不确定如何开始。对于真值表,我将使用 (w,x,y,z) 作为输入变量还是仅使用 ABCDEFG 变量,因为它是打开和关闭的变量?
input (1010)-->A--> ABCEFG~D (~ stand for NOT)
input (1011)-->B--> ABCDEFG
input (1100)-->C--> ADEF~B~C~G
那么我会为所有十六进制 0-F 做那将给我分钟。term canonical 那么用卡诺图优化呢?任何帮助将不胜感激!