Directives Lecture
Directives Lecture
of
8086
Definition
• Assembler directives are instructions that direct
the assembler to do something.
• Macros
ASSUME
NAME DB ABCDEF
DW: DEFINE WORD
• It is used to define a variable of type word i.e.
assembler reserves the no. of memory words
16-bits.
• EXAMPLE:
MULTIPLIER DW 437Ah
DQ:DEFINE QUADWORD ;
reserve 4 words of storage in memory
CODE SEGMENT
• ENDS : Indicate end of a logical segment