Crossware

Table of Contents        Previous topic       Next topic       

CROSS ASSEMBLER->Assembler Macros->Introduction to Assembler Macros

A macro is a powerful tool to enable you to generate multiple lines of code from a single statement.  Coupled with conditional assembly, macros can perform complex tasks.  

There are two aspects to a macro:

- the macro definition
- the macro expansion.

The macro definition does not generate any code.  It simply defines a set of statements for later use during the macro expansion phase.  When the macro is defined it is given a unique name by the user.  The statements included in the macro definition can then be regenerated (expanded) simply by including that name in the operation field of a source code statement (known as a macro call).  Moreover, arguments can be included in the operand field following the macro call.  These arguments are used during expansion to directly replace dummy arguments in the macro definition. Thus a macro can be called many times and different arguments can cause different code to be generated for each call.  The dummy arguments may be in the label, operation or operand fields of the statements in the macro definition and so a very flexible system is possible. The following example illustrates a simple macro definition and macro call. (See sections 12.2.14 and 12.2.6 for descriptions of the directives MACR and ENDM).

Firstly the source code listing:

 NAM  MACXAMPL
 TTL     Macro Definition and Call
 LIST
 ORG 6000H

* This is the macro definition:

macxampl MACR  
    MOVE $6000,\0
    MOVE $52,\1
    ADD \1,\0
    ENDM

* This is the macro call:

macxampl D1,D2


And now the listing generated during assembly:

    1            NAM    MACXAMPL    
    2            TTL    Macro
                Definition
                and Call
    3            LIST
    4 00006000        ORG    6000H
    5
    6            * This is the macro
                definition:
    7
    8            macxampl MACR  
    9            MOVE $6000,\0
    10            MOVE $52,\1
    11            ADD \1,\0
    12            ENDM
    13
    14            * This is the macro call:
    15
    16            macxampl D1,D2    00006000 32386000        MOVE   
$6000,D1
    00006004 34380052    MOVE    $52,D2
    00006008 D242        ADD    D2,D1
    17

Assembly complete
Bytes filed: 10
0 errors
0 warnings

The statements that can be included in a macro definition are:

- executable instructions
- assembler directives
- macro calls

A macro cannot be called until it is has been defined.  The macro definition must therefore precede any reference to it.