100% found this document useful (5 votes)
5K views1 page

Assembler Directives of 8086

The document discusses assembler directives for the 8086 processor. It describes directives like DATA, CODE, and ASSUME that mark the start of segments. It also covers directives like DB, DW, DD that define bytes, words, and double words of memory. Additionally, it mentions the LABEL and DUP directives that are used to assign names and store duplicates of values.

Uploaded by

Radhakrishna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
100% found this document useful (5 votes)
5K views1 page

Assembler Directives of 8086

The document discusses assembler directives for the 8086 processor. It describes directives like DATA, CODE, and ASSUME that mark the start of segments. It also covers directives like DB, DW, DD that define bytes, words, and double words of memory. Additionally, it mentions the LABEL and DUP directives that are used to assign names and store duplicates of values.

Uploaded by

Radhakrishna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
You are on page 1/ 1

INTRODUCTION TO 8086

ASSEMBLER DIRECTIVES

THEORY

Assembler Directives:
DATA:

It marks the start of the data segment.

CODE:

It marks the start of the code segment.

ASSUME:

Informs the assembler of the logical segment to be assumed of different


segment used in program.

MACRO:

It is used to define a set of macros.

DB:

It stands for Define byte. It is used to define a byte of memory

DW:

It stands for Define word. It is used to define a word of memory

DD:

It stands for Define double word. It is used to define a double word of


memory

LABEL:

It is used to assign name to the current content of the location counter.

DUP:

It is used to store the duplicate of values given by DB, DD, DW, DQ.
This value can be duplicated to the value given by DUP.
Generally used to allocate space for table/array.

You might also like