728x90
1. AND Gate (곱)
A | B | output( A·B) |
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
2. OR Gate (합)
A | B | output( A+B) |
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 1 |
3. Not Gate (부정)
A | output( A') |
0 | 1 |
1 | 0 |
4. NAND Gate( Not + AND)
A | B | output( (A·B)' ) |
0 | 0 | 1 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
5. NOR Gate (Not + OR)
A | B | output( (A+B)') |
0 | 0 | 1 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 0 |
6. XOR Gate ( Exclusive OR /배타적 논리합)
A | B | output( A ⊕ B) |
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
7. XOR Gate ( 배타적 NOR = Not + XOR)
A | B | output( A ⊙ B) |
0 | 0 | 1 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
728x90
'2.1 CS > 컴퓨터구조 & 논리' 카테고리의 다른 글
[cs/컴퓨터구조&논리] Accumulator (0) | 2024.08.19 |
---|---|
[cs/컴퓨터구조&논리] Multiplexer, Demultiplexer, Encoder, Decoder (0) | 2024.08.19 |
[CS/논리] 플립플롭 (0) | 2024.08.19 |
[컴퓨터구조] 폰노이만 구조 (0) | 2024.08.13 |
[Cs/컴퓨터구조] RISC, CISC (0) | 2024.08.09 |
댓글