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