Crossware

Table of Contents        Previous topic       Next topic       

CROSS ASSEMBLER->Assembler Macros->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  
        mov A,\0
               movx \1,A
               ENDM

; This is the macro call:
       
               macxampl R5, @R1

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                         mov A,\0
  11                                 movx \1,A
  12                                 ENDM
  13
  14                 ; This is the macro call:
  15
  16                           macxampl R5, @R1     
     6000 ED                   mov     A,R5        
     6001 F3                   movx    @R1,A       
  17
Assembly complete
Total bytes generated: 2
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.