go to previous page   go to home page   hear noise highlighting

Answer:

Human brains work (mostly) in parallel. Multitasking gives the appearance of parallel processing. Brains and some computers actually do it.


End of Chapter

machine cycle

Model Summary

Here is a summary of the basic MIPS programming model. Click on the hyper-links for more details.

Machine Instructions: machine instruction, size Machine instructions are thirty-two bits wide. Bit patterns specify the operation, the operands, and the destination for the result. Basic operations are arithmetic, logic, memory access, and control branches.

Machine Cycle: The MIPS machine cycle machine cycle is illustrated at right. Execution proceeds sequentially one instruction at a time. The control point control point indicates the instruction about to execute. ALU operations never directly access memory.

Registers: Thirty-two 32-bit wide general purpose registers, which have various register, naming conventions conventional uses. Register $0 is hard-wired to 32 zero-bits.

Memory: Thirty-two bit address space, but only the lower half (most of it anyway) is for user programs. User memory is further divided memory, conventional layout (by software convention) into text, data, and stack segments.


go to previous page   go to home page