You are on page 1of 2

Programme Control

Program control is how a program makes decisions or organizes its activities.

Program control change, control or modify the flow of a program.

Types of Programme Control

 Unconditional Jump
 Conditional Jump

Unconditional Jump:

Jump to Label without any condition. The JMP instruction transfers


control unconditionally to another instruction. JMP corresponds to goto
statements in high-level languages.

Syntax
JMP label

Conditional Jump:

Jump to Label when condition occur. If some specified condition is satisfied in


conditional jump, the control flow is transferred to a target instruction. There
are numerous conditional jump instructions depending upon the condition
and data.
Syntax
Opcode label

You might also like