Table of Contents

Assembly - Instruction

About

Instruction (Machine Language) in Assembly

Syntax

The syntax of an instruction in assembly is as follow:

label: mnemonic [operandArgument{0,3}] [;comment]

where:

When two operands are present in an arithmetic or logical instruction, the right operand is the source and the left operand is the destination. Some assembly languages put the source and destination in reverse order.

Example:

LOADREG: MOV EAX, SUBTOTAL

Management

List

The list of all instruction are found in the instruction set of the device.

Example: see Intel Instruction Interpretation