ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

数字电路 Digital Circuit

2021-09-15 11:05:19  阅读:257  来源: 互联网

标签:Digital Circuit 数字电路 adder Logic output input logic


Overview

In this course we mainly learned about:

  • Logic Algebra: Basic Operations and Logic Function
  • Combinational Logic Circuit: Encoder, Decoder, Adder
  • Semiconductor Storage Circuit: SR Latch and Flip-Flops

一、Logic Algebra

Logic algebra is the foundation of digital circuits.

1. Basic Operations

There are three basic operations in logical algebra: AND, OR, and NOT.

AND: Y = A · B

OR: Y = A + B

NOT: Y = A’

We can use three graphics to represent them:

Below the symbols are truth table. We use them to list all possible input and output results.

universal-logic-gates

Compound logic operations include NAND, NOR, etc.

2. Logic Function and Karnaugh Map

If the logic variable is input and the result is output, then the output depends on the input. Therefore, there is a functional relationship between input and output.

This functional relationship is called a logic function.

Y=F(A,B,C,···)

Karnaugh map is used to simplify logical functions. Example:

maxresdefault

二、Combinational Logic Circuit

In a combinational logic circuit, the output at any time depends only on the input at that time, and has nothing to do with the original state of the circuit.

We mainly learned about some commonly used modules:

1) Encoder

The function of the encoder is to encode each input high and low level signal into a corresponding binary code.

For example, a 3-bit binary encoder, if the input is 10000000, the output can be 000

The common 8-3 priority encoder chip is 74HC148.

2) Decoder

The function of the decoder is to translate each input binary code into the corresponding output high and low level signals.

74LS138 is a commonly used 3-8 decoder chip.

3) Adder

The adder is responsible for the add operation.

There are two types of adder: half adder and full adder.

The half adder does not consider the carry C.

half-adder-1

三、Semiconductor Storage Circuit

1) SR Latch

The SR latch is the most basic and simplest type of circuit structure among static memory cells.

SR-Flip-Flop-Circuit-74HC00-Truth-Table

2) Flip-Flop

The difference from the latch is that the flip-flop has an additional trigger signal input CLK.

Only when the trigger signal comes, the trigger can be set to the corresponding state according to the input.

sr_flipflop

There are many types of flip-flops.

  • JK
  • D
  • T

标签:Digital,Circuit,数字电路,adder,Logic,output,input,logic
来源: https://www.cnblogs.com/danielwong2021/p/15271277.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有