跳到主要内容

3.2.5 组合电路5

这是一个组合逻辑电路。请通过阅读仿真波形来确定该电路的具体功能,并据此实现该电路。

alt text

模块声明

module top_module (
input [3:0] a,
input [3:0] b,
input [3:0] c,
input [3:0] d,
input [3:0] e,
output [3:0] q );

做题区