RTL设计文件
Testbench文件
timescale
开头的点
`timescale 1ns/1ns //注意开头的`是数字1左边那个
- Testbench文件的module通常没有端口,直接分号结尾即可
module xxx;...endmodule
- 延时时间
rst
复位一般是:
#(`clock_period*200);
某个信号能延时那么多么?不可以,故:
#(`clock_period);
- 通常为了
timescale
开头的点`timescale 1ns/1ns //注意开头的`是数字1左边那个
module xxx;...endmodule
rst
复位一般是:
#(`clock_period*200);
某个信号能延时那么多么?不可以,故:
#(`clock_period);