External Constant Name Rules

external_constant_name_100

phase_2 error whitespace

This rule checks for a single space after the double less than.

Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..

Violation

<<     constant dut.fifo.wr_en : std_logic >>
<<constant dut.fifo.wr_en : std_logic >>

Fix

<< constant dut.fifo.wr_en : std_logic >>
<< constant dut.fifo.wr_en : std_logic >>

external_constant_name_101

phase_2 error whitespace

This rule checks for a single space after the constant keyword.

Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..

Violation

<< constant    dut.fifo.wr_en : std_logic >>

Fix

<< constant dut.fifo.wr_en : std_logic >>

external_constant_name_102

phase_2 error whitespace

This rule checks for a single space before the colon.

Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..

Violation

<< constant dut.fifo.wr_en: std_logic >>
<< constant dut.fifo.wr_en        : std_logic >>

Fix

<< constant dut.fifo.wr_en : std_logic >>
<< constant dut.fifo.wr_en : std_logic >>

external_constant_name_103

phase_2 error whitespace

This rule checks for a single space after the colon.

Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..

Violation

<< constant dut.fifo.wr_en :std_logic >>
<< constant dut.fifo.wr_en :     std_logic >>

Fix

<< constant dut.fifo.wr_en : std_logic >>
<< constant dut.fifo.wr_en : std_logic >>

external_constant_name_104

phase_2 error whitespace

This rule checks for a single space before the double greater than.

Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..

Violation

<< constant dut.fifo.wr_en : std_logic>>
<< constant dut.fifo.wr_en : std_logic     >>

Fix

<< constant dut.fifo.wr_en : std_logic >>
<< constant dut.fifo.wr_en : std_logic >>

external_constant_name_500

phase_6 error case case_keyword

This rule checks the constant keyword has proper case.

Refer to Configuring Uppercase and Lowercase Rules for more information.

Violation

<< CONSTANT dut.fifo.wr_en : std_logic >>

Fix

<< constant dut.fifo.wr_en : std_logic >>