针对下列module写一个testbench。module Trig( clk, rst_n, trig); //---Ports declearation: generated by Robei--- input clk; input rst_n; output trig; wire clk; wire rst_n; wire trig; //----Code starts here: integrated by Robei----- parameter DELAY = ( 70 * 50_000 ) + 15 * 50;//count time preiod(70ms+15us) reg [20:0] cnt; //---------------count----------------// always@(posedge clk) if(!rst_n) cnt <= 0; else if(cnt == DELAY - 1) cnt <= 0; else cnt <= cnt + 1; //---------------initial trig--------------// assign trig = (( cnt > 0) && (cnt < 15 * 50 )) ? 1 : 0; endmodule //Trig
时间: 2023-08-15 20:19:14 浏览: 88
以下是一个简单的 testbench,用于测试 Trig 模块:
```verilog
module Trig_tb();
//---Testbench clock and reset signals---
reg tb_clk = 0;
reg tb_rst_n = 0;
//---Testbench inputs and outputs---
wire tb_trig;
//---Instantiate the Trig module---
Trig dut(
.clk(tb_clk),
.rst_n(tb_rst_n),
.trig(tb_trig)
);
//---Clock generator---
always #25 tb_clk <= ~tb_clk;
//---Reset generator---
initial begin
#100 tb_rst_n = 1;
#100 tb_rst_n = 0;
#100 tb_rst_n = 1;
end
//---Stimulus---
initial begin
#100;
for (int i = 0; i < 2000; i++) begin
#50;
end
$finish;
end
endmodule
```
在 testbench 中,我们首先实例化了 Trig 模块,并将其连接到 testbench 的输入和输出信号。然后,我们使用一个时钟生成器和一个复位生成器,对模块进行时钟和复位的控制。最后,我们使用一个简单的刺激来测试模块的功能。该刺激生成了 2000 个时钟周期,每个周期之间间隔 50 个时间单位。当所有的刺激都完成时,模拟器将会 $finish。
阅读全文