Constrained Array Definition Rules

constrained_array_definition_500

phase_6 error case case_keyword

This rule checks the array keyword has proper case.

Refer to Configuring Uppercase and Lowercase Rules for more information.

Violation

type t_u_array is ARRAY(1 downto 0) of unsigned;

Fix

type t_u_array is array(1 downto 0) of unsigned;

constrained_array_definition_501

phase_6 error case case_keyword

This rule checks the of keyword has proper case.

Refer to Configuring Uppercase and Lowercase Rules for more information.

Violation

type t_u_array is ARRAY(1 downto 0) of unsigned;

Fix

type t_u_array is array(1 downto 0) of unsigned;