题解 | #序列发生器#

序列发生器

https://www.nowcoder.com/practice/1fe78a981bd640edb35b91d467341061

`timescale 1ns/1ns

module sequence_generator(
	input clk,
	input rst_n,
	output reg data
	);

reg [2:0] cnt;

always@(posedge clk, negedge rst_n)
if(rst_n==1'b0) cnt <= 'b0;
else if(cnt<5) cnt <= cnt+1'b1;
else cnt <= 'b0;

always@(posedge clk, negedge rst_n)
begin
if(rst_n==1'b0) data <= 1'b0;
else if(cnt==3'd0 || cnt==3'd1 || cnt==3'd3) data <= 1'b0;
else data <= 1'b1;
end
endmodule

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务