0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

論理演算

Posted at

#And回路
2つの入力が1の時だけ1を返す
〜かつ〜の事

#Or回路
1つでも入力が1の時1を返す
〜または〜の事

not 演算

入力が1の時0、入力が0の時1を返す
〜ではないの事

#xor 演算
次の論理回路で求められる
(a,bが入力)
((not a) and b) or (a and not(b))

#半加算器
1bit+1bitの足し算
(a,bが入力)

1の位が a and b
10の位が a xor b
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?