728x90
반응형
1. 베릴로그에서 logic gates를 모델링할 때 사용하는 연산자는?
더보기
bit-wise operators
2. arithmetic operators 중 두 개는 aynthesizable code와 사용해서는 안된다. 무엇인가?
더보기
- ** (지수)
- % (모듈러스)
- / (나눗셈)
중 2가지
3. bit-wise 와 logical operation의 차이는?
더보기
The bit wise operators work on individual bits whereas the logical operators are used to combine logical expressions.
4. logical shift operators 와 arithmetic shift operators 의 차이는?
더보기
The logical shift operators pad the blank positions with 0b whereas the arithmetic operator preserves the sign of the signal.
728x90
반응형
'Verilog HDL > 1. Verilog HDL Basic (문법)' 카테고리의 다른 글
[Using Continuous Assignment] 1. 연속 할당 in 베릴로그 (0) | 2024.01.10 |
---|---|
[Verilog Tutorial] level-3 Verilog Operators 모음 (1) | 2024.01.04 |
[Verilog Operator] 7. Concatenation and Replication Operator (2) | 2024.01.04 |
[Verilog Operator] 6. 조건 연산자 (3) | 2024.01.04 |
[Verilog Operator] 5. 시프트 연산자 (3) | 2024.01.04 |