Question:

在vivado中,报如下错误:
ERROR: [VRFC 10-1342] root scope declaration is not allowed in verilog 95/2K mode

Answer:

这个问题是由于在module 和 endmodule 模块外面定义了reg、wire变量导致,要把这写定义写道module 和 endmodule中间包起来。