ID:13564 SystemVerilog Enumeration Type Declaration error at <location>: can't encode value for enumeration element "<name>" because the enumeration base type does not have enough bits

CAUSE: In a enumeration data type declaration at the specified location in a Verilog Design File (.v), you declared the specified enumeration element. However, Integrated Synthesis could not encode a unique value for element because the enumeration's base type is not wide enough. For example, if the enumeration's base type has N bits, then it can encode unique values for at most 2^N elements.

ACTION: Remove the specified element, or declare a wider base type for the enumeration.