File Type Definition Rules

file_type_definition_500

phase_6 error case case_keyword

This rule checks the file keyword has proper case.

Refer to Configuring Uppercase and Lowercase Rules for more information.

Violation

type integer_file is FILE of integer;

Fix

architecture rtl of fifo is

type integer_file is file of integer;

begin

file_type_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 integer_file is file OF integer;

Fix

architecture rtl of fifo is

type integer_file is file of integer;

begin