2.1 基本論理ゲートとCMOS構成

2.1 Basic Logic Gates and CMOS Structures


🎯 本節のねらい|Goal of This Section

本節では、論理回路の最小単位である 基本ゲート(AND, OR, NOT) について学びます。
それぞれの論理式、真理値表、回路記号、CMOS構成を対応付けて理解し、MOSトランジスタがどのように論理動作を実現しているかを明らかにします。

This section introduces the fundamental logic gates (AND, OR, NOT) and explains how logic expressions, truth tables, gate symbols, and CMOS structures correspond. You’ll also learn how MOS transistors implement logic behavior.


🔹 NOT(インバータ)|Inverter

▶ 論理式 / Logic Expression:

\[Y = \overline{A}\]

▶ 真理値表 / Truth Table:

A Y
0 1
1 0

▶ 回路記号 / Gate Symbol:

図2.1-1 NOTゲート記号

▶ CMOS構成 / CMOS Structure:

出力ノードは、pMOSとnMOSのドレインが接続された中点。Aの値に応じて、VDDかGNDのどちらか一方に導通します。

The output node (drain midpoint) is connected to either VDD or GND depending on the input.

図2.1-2 NOTゲートCMOS構成


🔹 ANDゲート|AND Gate

▶ 論理式 / Logic Expression:

\[Y = A \cdot B\]

▶ 真理値表 / Truth Table:

A B Y
0 0 0
0 1 0
1 0 0
1 1 1

▶ 回路記号 / Gate Symbol:

図2.1-3 ANDゲート記号

▶ CMOS構成(NAND + NOT)/ CMOS Structure (NAND + Inverter):

図2.1-4 ANDゲートCMOS構成


🔹 ORゲート|OR Gate

▶ 論理式 / Logic Expression:

\[Y = A + B\]

▶ 真理値表 / Truth Table:

A B Y
0 0 0
0 1 1
1 0 1
1 1 1

▶ 回路記号 / Gate Symbol:

図2.1-5 ORゲート記号

▶ CMOS構成(NOR + NOT)/ CMOS Structure (NOR + Inverter):

図2.1-6 ORゲートCMOS構成


✅ まとめ|Summary

項目 / Aspect 内容 / Key Point
理解の統一 論理式・真理値表・記号・CMOS構成の一貫理解が重要
CMOS基本構造 NAND / NORが基本ゲートとして活用される
トランジスタ直感 nMOS直列=AND的、pMOS並列=OR的構造を意識

It’s essential to integrate logic expressions, truth tables, symbols, and CMOS design.
In CMOS, NAND and NOR are fundamental, with AND/OR gates constructed via inversion.
Physically, think of nMOS in series as AND-like, and pMOS in parallel as OR-like.


📎 次節へ:2.2_nand_nor_xor.md

Next section: Extended gates — NAND, NOR, XOR


← 戻る / Back to Chapter 2: Combinational Logic Top