3-10-7 Alignment Directives

There are two directives that are used for alignment purposes. The directive

EVEN
forces the address of the next byte to be even.
DATA_SEG      SEGMENT
               .
               .
               .
                  EVEN
    WORD_ARR      DW      100 DUP(?)
               .
               .
               .
DATA_SEG      ENDS

3-11 ASSEMBLY PROCESS

Figure 3-66 Assembler's input and output.

Figure 3-67 Two-pass assembler.


Table of Contents | Next page | Previous page

This is page 50.