问题描述:
[单选]
以下代码实现了一个3-8译码器。module test(clk,reset,en,in,out);iput clk,reset,en,in;output【3:0】 out;reg【3:0】 out;always @(posedge clk)begin if(reset) out<=4 ’h0;else if(en) out<={out,in};endendmodule
A.对
B.错
参考答案:查看无
答案解析:无
☆收藏
答案解析:无
☆收藏
- 我要回答: 网友(216.73.216.187)
- 热门题目: 1.评分者信度,其信度系数在0. 2.一份试卷的难度指数越大,说明 3.简答题可用于测量不同水平的教
