CVER Compile problem

P

pwp

Guest
Hi,

When I use the following code in the verilog file and compile it with
GPL CVER, I got the error msg.
Does anyone know how to solve it?
Is there anyother way to define a constant parameter in verilog? I
tried "para Num_Lines = 256", but the same err.

------Verilog Code------
localparam Num_Lines = 256
------

------ERROR MSG------
GPLCVER_2.11a of 07/05/05 (Linux-elf).
Compiling source file "../rtl/l0i_cache.v"
**../rtl/l0i_cache.v(149) ERROR** [1044] instance/gate "Num_Lines"
type "localparam" connection list expected - = read
------

Many thanks
 
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

pwp wrote:
Hi,

When I use the following code in the verilog file and compile it with
GPL CVER, I got the error msg.
Does anyone know how to solve it?
Is there anyother way to define a constant parameter in verilog? I
tried "para Num_Lines = 256", but the same err.

------Verilog Code------
localparam Num_Lines = 256
------

------ERROR MSG------
GPLCVER_2.11a of 07/05/05 (Linux-elf).
Compiling source file "../rtl/l0i_cache.v"
**../rtl/l0i_cache.v(149) ERROR** [1044] instance/gate "Num_Lines"
type "localparam" connection list expected - = read
------
The localparam keyword is Verilog 2001, and I do not think cver
supports it. You probably want to use "parameter".

- --
Steve Williams "The woods are lovely, dark and deep.
steve at icarus.com But I have promises to keep,
http://www.icarus.com and lines to code before I sleep,
http://www.picturel.com And lines to code before I sleep."
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Using GnuPG with SUSE - http://enigmail.mozdev.org

iD8DBQFF83NBrPt1Sc2b3ikRAq5HAJ9kGAT1U5uAYvKM4YTrpxpnT/tA5ACeIfZb
dPCCb85hunyfQlW8AGl3mLg=
=N+49
-----END PGP SIGNATURE-----
 

Welcome to EDABoard.com

Sponsor

Back
Top