Digital logic
Digital logic에서 assert와 deassert란?
자전거 타는 구구
2023. 8. 7. 20:02
반응형
Digital logic에서 assert와 deassert라는 표현이 사용되는 상황은 다음의 표 1과 같습니다.
assert | deassert | |
active high | 값이 0에서 1로 변할 때 | 값이 1에서 0으로 변할 때 |
active low | 값이 1에서 0으로 변할 때 | 값이 0에서 1로 변할 때 |
위의 표현이 사용된 예시를 문서에서 찾아보았습니다.
The source uses the VALID signal to indicate when valid information is available. The VALID signal
must remain asserted, meaning set to high, until the destination accepts the information. Signals that
remain asserted in this way are called sticky signals. - Introduction to AMBA AXI4
Handshake 신호를 설명하는 구문인데요, 'The VALID signa must remain asserted, meaning set to high'라고 적혀있습니다. VALID신호는 데이터가 유효하다고 알려주는 신호인데, destination에서 받을 때 까지 high상태를 유지해야 하기 때문에 위와 같이 설명이 되어 있습니다.
active high와 active low (tistory.com)
반응형