我是靠谱客的博主 时尚月饼,最近开发中收集的这篇文章主要介绍HDLBits练习——Exams/ece241 2014 q4前言代码总结,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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.
在这里插入图片描述


前言

两个输入,包括一个时钟clk,一个待处理的输入信号x;一个输出信号z。

代码

module top_module (
    input clk,
    input x,
    output z
); 
	reg q1,q2,q3;
    initial z=1'b1;
    always@(posedge clk)begin
        z<=~(x^q1|z&~q2|x|~q3);
        q1<=x^q1;
        q2<=x&~q2;
        q3<=x|~q3;
    end
endmodule

总结

在该例中初始赋值只能使用initial,当使用assign或者always模块时会由于赋值冲突产生错误。

最后

以上就是时尚月饼为你收集整理的HDLBits练习——Exams/ece241 2014 q4前言代码总结的全部内容,希望文章能够帮你解决HDLBits练习——Exams/ece241 2014 q4前言代码总结所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部