E: Verilog-4163: [F:/PGAwork/flow-led/prj/source/rtl/flow-led.v(line number: 7)] Global declarations are illegal in verilog, Enable SystemVerilog features first.
时间: 2024-01-28 08:05:14 浏览: 160
Verilog and system verilog
这个错误提示表明您的Verilog代码包含了SystemVerilog的全局声明,但是您的编译器没有启用SystemVerilog功能。SystemVerilog是Verilog HDL的扩展,它添加了一些新的特性和语法。如果您想使用SystemVerilog中的某些特性,您需要在编译器中启用SystemVerilog功能。
要启用SystemVerilog功能,您可以在编译器命令行中添加选项“-sv”,或者在编译器设置中启用SystemVerilog支持。在启用SystemVerilog功能后,您可以使用SystemVerilog中的全局声明,例如`typedef`、`struct`等。
如果您的代码中没有使用SystemVerilog的全局声明,那么请检查您的代码,确保没有使用SystemVerilog的语法或特性。
阅读全文