Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- https://m.blog.naver.com/tt2t2am1118/221010125300
- slow and steady
- async
- eport
- JS #프로젝트
- ajax
- 참고블로그
- Import
- db
- json
- mysql
- await
- setTimeout()
- 비동기
- https://youtube.com/playlist?list=PLuHgQVnccGMA5836CvWfieEQy0T0ov6Jh&si=FTaYv8m21EhO-A2K
- webpack
- sql
- execCommand
- 게임
- Porject
- prj
- callback
- js
- object
- Project
- promise
- 혼프
- database
- addEventListener
- 동기
Archives
- Today
- Total
C-log
💻그래서 컴퓨터는 무엇? : Universal Gate NAND, NOR 본문
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
'CS > 그래서 컴퓨터는 무엇?💻' 카테고리의 다른 글
💻그래서 컴퓨터는 무엇? : 다중 입력 게이트, 디코더 (0) | 2023.08.16 |
---|---|
💻그래서 컴퓨터는 무엇? : Bus(버스)와 Tri-state Buffer(컨트롤 버퍼) (0) | 2023.08.14 |
💻그래서 컴퓨터는 무엇? : 레지스터 2(8bit Memory& Register) (0) | 2023.08.13 |
💻그래서 컴퓨터는 무엇? : 레지스터 1(1bit Memory) (0) | 2023.08.13 |
그래서 컴퓨터는 무엇? : 소개💻 (0) | 2023.08.13 |
Comments