当前位置: 代码迷 >> 综合 >> 【Verilog基础】Verilog易错知识点总结(不断更新)
  详细解决方案

【Verilog基础】Verilog易错知识点总结(不断更新)

热度:88   发布时间:2023-12-13 01:31:47.0

RTL设计文件

Testbench文件

  • timescale 开头的
`timescale 1ns/1ns //注意开头的`是数字1左边那个
  • Testbench文件的module通常没有端口,直接分号结尾即可
module xxx;...endmodule
  • 延时时间

rst 复位一般是:

#(`clock_period*200);

某个信号能延时那么多么?不可以,故:

#(`clock_period);
  • 通常为了