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  and  for descriptions of the directives MACR and ENDM).

Firstly the source code listing:

    NAM    MACXAMPL
    TTL    *** Macro Definition and Call ***
    LIST
    MEX
    ORG 6000H

* This is the macro definition:

macxampl MACR  
        LDAA 5,X
        STAA \0
        ENDM

* This is the macro call:
    
        macxampl (0,X)

And now the listing generated during assembly:

   1                           NAM     MACXAMPL    
   2                           TTL     *** Macro Definition and Call ***
   3                           LIST                
   4                           MEX                 
   5 6000                      ORG     6000H       
   6
   7                 * This is the macro definition:
   8
   9                 macxampl MACR  
  10                         LDAA 5,X
  11                         STAA \0
  12                         ENDM
  13
  14                 * This is the macro call:
  15
  16                           macxampl (0,X)       
     6000 A6 05                LDAA    5,X         
     6002 A7 00                STAA    0,X         
  17
Assembly complete
Bytes filed: 4
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.