题解 | #根据RTL图编写Verilog程序#

根据RTL图编写Verilog程序

https://www.nowcoder.com/practice/41a06522d8b242808c31a152bf948b5e

`timescale 1ns/1ns

module RTL(
	input clk,
	input rst_n,
	input data_in,
	output reg data_out
	);
	reg data_in_r;
	wire data_out_w;
	assign data_out_w = data_in && ~data_in_r;

	always @(posedge clk or negedge rst_n)begin
		if(!rst_n)
			data_in_r <= 0;
		else
			data_in_r <= data_in;
	end 
	always @(posedge clk or negedge rst_n)begin
		if(!rst_n)
			data_out <= 0;
		else
			data_out <= data_out_w;
	end 


endmodule
module tb();
	reg clk;
	reg rst_n;
	reg data_in;
	wire data_out;
	initial begin
		clk = 0;
		forever #5 clk = ~clk;
	end 
	initial begin
		rst_n = 0;
		repeat(10)@(posedge clk);
		rst_n = 1;
	end 
	initial begin
		data_in = 0;
		repeat(10)@(posedge clk);
		data_in = 1;
	end 

endmodule

全部评论

相关推荐

像好涩一样好学:这公司我也拿过 基本明确周六加班 工资还凑活 另外下次镜头往上点儿
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务