Notes of Crash Course Computer Science
Notes of crash course computer science.
The structure of computer is simple. For hardware, computer includes Memory, Controller, Processor and I/O devices. For software, the basic element is operating system.
Central Processing Unit (CPU) is the brain of the computer. It receives data, execute commands and process the data.
CPU can also be divided into following parts according to their functions.
Name | Functions |
---|---|
Register | Store the command code, data, and address data |
Controller | Fetch the command, data from memory to register, and execute the I/O devices |
Arithmetic Logic Unit (ALU) | Operate the data in register |
Clock | Count signal |
All parts above are connected together via electricity’s signal.
The working pipeline of CPU is as follows.
Controller
fetches the command from memory to registers, Program Counter
stores the next address of command that needs to be executed.Controller
decodes the command according to existed rules, recognizes operation category and the methods.Controller
handles the action of the command. e.g. Add numbers stored in two registers, compare two numbers.Controller
will fetch the data from the memory according to the address decoded from the command.There are several kinds of register in CPU.
It store the address of the unit in memory which stores the command that needs to be executed. It control the process of the program to be executed.
When the program is executed, the process is as follows.
JMP
command in Assembly language), which points to the unit which stores the next command.Stack
in memory, when the function is finished, the content of Program Counter will be set to the address in the top of Stack
.Flag Register stores the sign(+/-/0) of the Accumulation Register.
There is a compare
action when conditional/loop function appears. When the compare function is executed, subtraction action will happen, and the answer is store in the Flag Register, then the Program Counter will be updated to corresponding address.
A base register and several index registers can form an array. The array is stored continuously.
Memory has tight relationship with with CPU, CPU will fetch the command and data from disk to memory, and write back the command and data to disk.
There is several kinds of memory.
Name | Functions |
---|---|
RAM | Can be read and wrote. Data will lose when power off |
ROM | Can only be read. Data won’t lose when power off |
Cache | It has high read and write speed. CPU will handle the cache firstly. If there is no required data, CPU will fetch data in RAM |
Memory has power, address signal, data signal, control signal.
The program stored in disk must be loaded to memory to be executed.
The disk has the following parts
Name | Function |
---|---|
Disk Cache | It stores the repeated content that memory requires to read from disk. It could accelerate the read speed of memory |
Virtual Memory | It can provide a virtual continuous memory for the program when the memory doesn’t enough space. The content in the real memory and the virtual memory will be swapped when required |
Physcially, the disk is divided into different sector, which is the unit to do the read and write actions to disk. A disk will include 512 byte normally.
Operate system could get over the difference of computer hardware except CPU.
The program just needs to call the API(Application Programming Interface) in operate system, then operate could handle the I/O devices.
Operate system includes:
[1] WeChat article