Skip to content

Latest commit

 

History

History
47 lines (25 loc) · 789 Bytes

for_generate_statement_rules.rst

File metadata and controls

47 lines (25 loc) · 789 Bytes

For Generate Statement Rules

for_generate_statement_500

This rule checks the for keyword has proper case.

Violation

FOR x in range (3 downto 0) generate

Fix

for x in range (3 downto 0) generate

for_generate_statement_501

This rule checks the generate keyword has proper case.

Violation

for x in range (3 downto 0) GENERATE

Fix

for x in range (3 downto 0) generate