The "controller" is used to control, direct and coordinate the work of various computer components. The controller is the nerve center of the computer, which directs all components of the machine to work automatically and coordinatedly. Under the control of the controller, the computer can automatically perform a series of operations according to the steps set by the program to complete specific tasks.
#The operating environment of this tutorial: Windows 7 system, Dell G3 computer.
The "controller" is used to control, direct and coordinate the work of various computer components.
The controller is the nerve center of the computer, directing all components in the entire machine to automatically coordinate their work. Under the control of the controller, the computer can automatically perform a series of operations according to the steps set by the program to complete specific tasks.
Functions of the controller:
(1) Sequencing. The instructions that make up the program must be executed in a certain order and cannot be messed up.
(2) Timing. An electronic computer is a complex machine, composed of numerous components and parts, and different signals follow different paths. In order for these elements and components to work in harmony, the system must have a unified time standard - clock and beat. The clock and beat in a computer are provided by an oscillator. The operating frequency of the oscillator is called the clock frequency. Obviously, the higher the clock frequency, the faster the computer will work.
The combination of sequencing and timing is called timing sequence.
(3) Operation control. The controller should be able to send operation control signals to relevant components at the specified beat according to the content specified in the instruction.
The main internal components of the controller are as follows:
①Instruction register: stores instructions obtained from the memory.
②Decoder: Translate the operation code in the instruction into a control signal.
③ Timing beat generator: Generates timing pulse beat signals to make the computer work rhythmically and orderly.
④ Operation control components: combine control signals to control each component to complete the corresponding operation.
⑤Instruction counter: Calculate and point out the address of the next instruction.
The working process of the controller:
(1) Get instructions. The address of the current instruction is stored in the program counter (PC) of the controller. The first step in executing an instruction is to send the address to the memory's address driver (not shown), fetch the instruction according to the address, and send it to the instruction register (Instruction Register, IR). at the same time. PC automatically adds 1. Get ready to take the next order.
(2) Analysis instructions. An instruction consists of two parts: one part is called the operation code (OP). Indicates what operation the instruction is to perform; the other part is called the data address code, which is used to indicate which address the data stored in is to be operated on. In the instruction analysis stage, the data address code must be sent to the memory to retrieve the required operands to the arithmetic unit. At the same time, the OP is sent to the instruction decoding component, which is translated into signals for which operations are to be performed on which components, and then the specified signals (and timing signals) are sent to the specified components through the operation control logic.
(3) Send operation control signal. The relevant operation control signals are sent to the relevant components according to the timing arrangement, so that the relevant components can complete the specified operations in the specified beat.
For more related knowledge, please visit the FAQ column!
The above is the detailed content of What is used to control, direct and coordinate the work of various computer components?. For more information, please follow other related articles on the PHP Chinese website!