Closed NINI1988 closed 4 years ago
std_logic and std_logic_vector are not formatted to uppercase, but integer does. Is this behavior wanted?
Type name case: UPPERCASE
ENTITY TriggerTime IS PORT ( a: OUT std_logic; b: IN std_logic_vector(1 DOWNTO 0); c: IN integer );
ENTITY TriggerTime IS PORT ( a : OUT STD_LOGIC; b : IN STD_LOGIC_VECTOR(1 DOWNTO 0); c : IN INTEGER );
ENTITY TriggerTime IS PORT ( a : OUT std_logic; b : IN std_logic_vector(1 DOWNTO 0); c : IN INTEGER );
this has been fixed. Thanks for the feedback.
Report a bug
std_logic and std_logic_vector are not formatted to uppercase, but integer does. Is this behavior wanted?
Type name case: UPPERCASE
Input
Expected Behavior
Actual Behavior