constant declared as integer with parenthesis

D

Dalton Marris

Guest
I was looking at the LEON VHDL processor and there are some constants
declared as follows:

constant CFG_GPT_ENABLE : integer := 1;
constant CFG_GPT_NTIM : integer := (2);

What is the function, if any, of the parenthesis around the "2"?

Thanks.
 
Dalton Marris wrote:
I was looking at the LEON VHDL processor and there are some constants
declared as follows:

constant CFG_GPT_ENABLE : integer := 1;
constant CFG_GPT_NTIM : integer := (2);

What is the function, if any, of the parenthesis around the "2"?
Nothing. It may be some vestige
of an earlier expression.

-- Mike Treseler
 

Welcome to EDABoard.com

Sponsor

Back
Top