728x90
반응형
- Operator (연산자) 에 대해서 배울 예정
- 디지털 데이터를 처리하는 방법을 제공
- 대부분의 경우 verilog operators를 사용할 때
- 합성을 원하는 boolean 표현식, 논리회로를 생성
- synthesizable code에 쓸 수 없는 연산자도 존재
Verilog Bit Wise Operators
- == 비트 연산자
- 여러개의 single bit inputs를 single bit output으로 조합하기 위해 사용
- Verilog Vector Types 에서도 사용 - 2024.01.02 - [Verilog/Basic] - [Verilog Data Types and Arrays] 2. 기본 데이터 type
- logic gates를 모델링 하는 것에 가장 많이 사용
Full list of bit wise operators
연산자 | 표현 |
---|---|
~ | bit-wise NOT |
& | bit-wise AND |
~& | bit-wise NAND |
| | bit-wise OR |
~| | bit-wise NOR |
^ | bit-wise XOR |
~^ | bit-wise XNOR |
728x90
반응형
'Verilog HDL > 1. Verilog HDL Basic (문법)' 카테고리의 다른 글
[Verilog Operator] 3. 관계 연산자 (1) | 2024.01.04 |
---|---|
[Verilog Operator] 2. 산술 연산자 (0) | 2024.01.04 |
[Verilog Tutorial] Level-2 Verilog Data Types and Arrays 모음 (0) | 2024.01.02 |
[Verilog Data Types and Arrays] 4. 예제 풀이 (1) | 2024.01.02 |
[Verilog Data Types and Arrays] 3. 배열 (1) | 2024.01.02 |