This repository has been archived on 2024-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
study/pwm/testbench/ir_decoder_tb.v.bak
2020-06-09 15:48:03 +08:00

31 lines
260 B
Coq

`timescale 1ns/1ns
`define clk_period 20
module ir_decoder_tb;
//source define
//probe define
//instant user module
//generater clock
initial clk = 1;
always #(`clk_period/2)clk = ~clk;
integer i;
initial begin
$stop;
end
endmodule