其他分享
首页 > 其他分享> > 数字电路 Digital Circuit

数字电路 Digital Circuit

作者:互联网

Overview

In this course we mainly learned about:

一、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.

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