提问人:kentotolo 提问时间:12/30/2022 更新时间:1/25/2023 访问量:32
电路 , 危险/卡诺图 ||由 x 和 y 2 个变量组成的 Karnaugh-Vetch 图甚至可以包含危险吗?
Circuits , Hazards/Karnaugh diagram || Can a Karnaugh-Vetch diagram consisting of 2 variables x and y even contain a hazard?
问:
我不完全理解,但对我来说,似乎不可能有问题/危险的道路。 因此,它是关于在带有逆变器 XOR 和 Ands 的半加法器电路中可能发生的危险。无法创建结构术语和图表。 将不胜感激
就我个人而言,不可能存在数据危害,但由于使用的不同 gatter,显然会发生结构性危害。但无法从中得到结构 KV 图,因为只有 2 个变量 x 和 y。
答:
0赞
Andrew
12/30/2022
#1
所有 16 个具有 POS 危害解释的案例如下所示:
\a 0 1
b\
0
1
0
00
00
0
1
10
00
not a . not b
2
01
00
a . not b
3
11
00
not b
4
00
10
not a . b
5
10
10
not a
6
01
10
a . not b + not a . b [(a, b)]: (1, 0) = 1 ==> (0, 1) = 1, but (0, 0) = 0 or (1, 1) = 0 could be hit during transition; SOP resolves this: not (a.b)
7
11
10
not b + not a [(a, b)]: (1, 0) = 1 ==> (0, 1) = 1, but (1, 1) = 0 could be hit during transition; SOP resolves this: not (a.b)
8
00
01
9
10
01
similar to 6 above
10
01
01
11
11
01
similar to 7 aove
12
00
11
13
10
11
similar to 7 aove
14
01
11
similar to 7 aove
15
11
11
评论