Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用加法器单元,特别是半加法器。
目前,我在数字作品中制定了标准的半加器单元(如下图所示)。
但是,我被要求使用选择的门来绘制半加器单元电路,例如 AND OR XOR NOT。
那么绘制半加器还有哪些其他方法呢?
您可以重新分解 S 和 C 输出的布尔逻辑,例如
S = A^B = A.B'+A'.B = (A.B)'.(A'.B')' = (A.B+A'B')' C = A.B = (A'+B')'
然后使用上述任何重构表达式绘制电路。