본문 바로가기
Verilog HDL/1. Verilog HDL Basic (문법)

[Verilog Operator] 8. 예제 풀이

by 한PU 2024. 1. 4.
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
반응형