fpga求大神帮我写个逻辑代码 65

 我来答
我是零零7
2018-06-19 · TA获得超过121个赞
知道答主
回答量:74
采纳率:100%
帮助的人:22.9万
展开全部
这么简单,还不会写,我来捞点分吧。

如下,下y和y2输出是一样的,实现抽象层次不一样,综合后的电路应该是一样的,随便选一个:
module mux_case_or_comb (
input [3:0] x,
input [1:0] s,
output reg y,
output y2
);
always@(*)
begin
case(s[1:0])
2'b00:y = x[0];
2'b01:y = x[1];
2'b10:y = x[2];
2'b11:y = x[3];
default:y = 0;
endcase
end
wire temp1, temp2, temp3, temp4;
assign temp1 = &{x[0] , ~s[1], ~s[0]};
assign temp2 = &{x[1] , ~s[1], s[0]};
assign temp3 = &{x[2] , s[1], ~s[0]};
assign temp4 = &{x[3] , s[1], s[0]};
assign y2 = |{temp1, temp2, temp3, temp4};
endmodule
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式