代码搜索:磁链检测

找到约 8,471 项符合「磁链检测」的源代码

代码结果 8,471
www.eeworm.com/read/9944/179285

txt 序列检测器verilog代码.txt

module seqdet(x,z,clk,rst,state); input x,clk,rst; output z; output [2:0] state; reg [2:0] state; wire z; parameter IDLE='d0,A='d1,B='d2,C='d3,D='d4,E='d5; assign z=(state==E && x==0)?1:0;