VHDL

VHDL 연산자(opeartor) & 예약어 종류

전자자연인 2019. 7. 15. 11:11
반응형

연산자

1. 논리연산자

   -> and , or, nand, nor, xor, xnor, not

2. shfit 연산자

 -> sll(shift left logic), srl(shift right logic)

 -> sla(shift left arithmetic), sra(shift right arithmetic)

3. 관계 연산자

 -> =, /=(같지않다), <, <=, >, >=(크거나 같다)

4. 산술 연산자

 -> +, -, *, /, mod, rem, abs, **(exponentation)

5. 연결 연산자

 -> &(시그널 concatenation)

 

예약어 (지정어 : Reserved Keywords)

 - 미리 지정된 문자열 (식별어로 사용 불가)

abs, after, array, block, buffer, bus, case, component, elsif

else, exit, for, function, wait, when, while with, if next 등

반응형

'VHDL' 카테고리의 다른 글

VHDL 구문(state ment)  (0) 2021.06.08
VHDL 데이터 형(Data type)  (0) 2019.07.15
VHDL신호 변수 상수  (0) 2019.07.15
VHDL 기본 구성  (0) 2019.07.15
HDL(Hardware Description Language)  (0) 2019.07.15