C-log

💻그래서 컴퓨터는 무엇? : Universal Gate NAND, NOR 본문

CS/그래서 컴퓨터는 무엇?💻

💻그래서 컴퓨터는 무엇? : Universal Gate NAND, NOR

4:Bee 2023. 8. 13. 14:53
728x90
 YouTube Link  
쓸모없는 CPU만들기 1강 - NAND 게이트로 다른 게이트 만들어봤자 무쓸모
https://youtu.be/kxVKyYuZw_0

Kevin Walsh의 logisim-evolution 툴을 설치하는 링크는 아래와 같다.

 

GitHub - kevinawalsh/logisim-evolution: Digital logic designer and simulator

Digital logic designer and simulator. Contribute to kevinawalsh/logisim-evolution development by creating an account on GitHub.

github.com

NAND Gate를 통해서 우리는 AND, OR, XOR을 제작해 볼 것이다. 그것을 제작하기 앞서 각 게이트들의 특징들을 간단하게 표를 통해서 살펴보자.

input A input B NAND
/output Q
AND
/output Q
OR
/output Q
XOR
/output Q
0 0 1 0 0 0
0 1 1 0 1 1
1 0 1 0 1 1
1 1 0 1 1 0


위에서는 NAND Gate를 중점으로 NAND, AND, OR, XOR 4가지를 만들어보고 살펴 보았다. NAND Gate 혹은 NOR Gate는 UNIVERSAL Gate라고 한다. 이외에도 NOR을 통해서도 여러 Gate를 제작할 수 있다. 아래 참고할 만한 블로그를 살펴보며 직접 제작해봐도 좋을 듯하다.

 

Universal Gate NAND, NOR

Universal gate란? Boolean expression을 구현하는 기본 gate는 대표적으로 NOT, AND, OR이 있다. 이 세 가지 게이트로 모든 boolean expression을 구현할 수 있다. Universal gate는 한 종류만으로 모든 boolean expression을

20460621.tistory.com

 

728x90
Comments