当前位置: 代码迷 >> 综合 >> HDLBits Exams/ece241 2014 q4
  详细解决方案

HDLBits Exams/ece241 2014 q4

热度:98   发布时间:2023-11-27 09:49:35.0

Given the finite state machine circuit as shown, assume that the D flip-flops are initially reset to zero before the machine begins.

Build this circuit.
在这里插入图片描述
其实本不应该记录这道题目但是自己踩坑了,所以还是记录下避免后续继续踩坑
在这道题目里有两个点要进行注意

  • 初始化的时候是将Q输出全部置为0,那么我们可以将Q全部初始化为0,但是也可以将Z初始化为1,这是完全等价的
  • 然后要注意到,程序里是需要使用阻塞赋值的,因为只有全部Q都到达最后一个逻辑或非的时候才能输出z,这点非常重要

题解如下

module top_module (input clk,input x,output z
); reg wire1,wire2,wire3;initial z = 1;always @(posedge clk)beginwire1 = x^wire1;wire2 = x&(~wire2);wire3 = x|(~wire3);z = ~(wire1|wire2|wire3); end
endmodule
  相关解决方案