Sie sind auf Seite 1von 1

Bus structure Normally the sequence proceeds in a linear

A group of lines that serves as a connecting fashion through the program, and the
path for several devices is called bus.In address of the instructions is obtained from
addition to the lines that carry the data, the the program counter in the control unit. This
bus must have lines for address and control sequence is interrupted when a branch
purposes. instruction is executed; at such a time the
The bus allows the different devices inside address field of the branch instruction is
the computer to communicate with each inserted into the program counter and the
other. In reality, it is little more than several process continues. In the case of an indirect
parallel 'traces' on the motherboard, but branch instruction, the memory content
quite a bit of physical and logical hardware referred to by the address field of the
can be connected. Some motherboards can instruction is inserted into the program
have multiple busses which can be used for counter.
different functions.
The buses in a computer refer to the digital Main memory operation
circuitry on the computer's motherboard that RAM is an electronic, or volatile, state.
is used to transfer data. in simpler terms it's When the computer is off, RAM is empty;
the gold lines all over the mother board that when it is on, RAM is capable of receiving
look like highways and roads on a map. and holding a copy of the software
instructions and data necessary for
instruction is a single operation of processing. The Ram is used for the
a processor defined by an instruction set following purposes:
architecture. In a broader sense, an • Storage of a copy of the main systems
"instruction" may be any representation of program that controls the general operation
an element of an executable program, such of the computer. This copy is loaded into
as a bytecode. RAM when the computer is turn on; it stays
An instruction is an order given to there as long as the computer is on.
a computer processor by a • Temporary storage of a copy of application
computer program. At the lowest level, each program instructions to be retrieved by the
instruction is a sequence of 0s and 1s that central processing unit (CPU) for
describes a physical operation the computer interpretation and execution.
is to perform (such as "Add") and, • Temporary storage of data that has been
depending on the particular instruction type, input from the keyboard or other input
the specification of special storage areas device until instructions call for the data to
called registers that may contain data to be be transferred into the CPU for processing.
used in carrying out the instruction, or the • Temporary storage of data that has been
location in computer memory of data.In a produced as a result of processing until
computer's assembler language, each instructions call for the data to be used again
language statement generally corresponds to in subsequent processing or to be transferred
a single processor instruction. In high-level to an output device such as the screen, a
languages, a language statement generally printer, or a disk storage device.
results (after program compilation) in • RAM chips are often called dynamic RAM
multiple processor instructions.In assembler (DRAM) chips, based on the style of the
language, a macro instruction is one that, electric circuits.
during processing by the assembler
program, expands to become multiple
instructions (based on a previously
coded macro definition).

instruction sequencing The order in which


the instructions in a program are carried out.

Das könnte Ihnen auch gefallen