基本标识符

基本标识符由字母,下划线和数字组成,必须以字母开头。它们不区分大小写。语言的保留字不能是基本标识符。有效 VHDL 基本标识符的示例:

A_myId90
a_MYID90
abcDEf100_1
ABCdef100_1

两个第一个是等价的,最后两个也是等价的(不区分大小写)。

无效基本标识符的示例:

_not_reset   -- start with underscore
85MHz_clock  -- start with digit
LooP         -- reserved word of the language