Simple Programs - PA23PH008
Simple Programs - PA23PH008
Presented by
B.Sugapriya
II M.Sc physics
BRANCHING INSTRUCTIONS
unconditional branches.
instructions.
CONDITIONAL BRANCHING
AND Instruction
The AND instruction perform logical AND operation between
two operands. The source can be an immediate, register, or a
memory location and the destination can be either a register or
a memory location. Both source and destination operands
cannot be a memory location.
Example:
MOV BX,3527
MOV CX,2968
AND BX,CX
RET
OR Logical Instruction