你能解释一下 Verilog、SystemVerilog、Verilog 1995 和 Verilog 2001 之间的主要区别吗?我正在使用xilinx 14.1
版本,想知道它是否支持 Verilog 2001。
如何检查确认?我应该在设置中修改什么吗?
你能解释一下 Verilog、SystemVerilog、Verilog 1995 和 Verilog 2001 之间的主要区别吗?我正在使用xilinx 14.1
版本,想知道它是否支持 Verilog 2001。
如何检查确认?我应该在设置中修改什么吗?
这篇SystemVerilog 论文的第 2 页有一个很好的图表,显示了 Verilog 1995、2001 和 SystemVerilog 之间的差异。
System Verilog 是 Verilog 的更新版本,具有类似 C 的编程。甚至上课
class Triangle;
...
function new()
... // all initializations go here
endfunction
...
endclass