•  Back 
  •  Assembler 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  Help 
  •  Show info about hypertext 
  •  View a new file 
Topic       : Pure Assembler Documentation
Author      : John Kormylo
Version     : PASM.HYP 1.0
Subject     : Documentation/Pure Assembler
Nodes       : 740
Index Size  : 20262
HCP-Version : 3
Compiled on : Atari
@charset    : atarist
@lang       : en
@default    : 
@help       : Help
@options    : +g -i -s +x +z -t4
@width      : 75
View Ref-File[ MACRO ]

MACRO name.size list

    Macro definition.  The code between the MACRO directive and the
    next ENDM directive will be substituted into the source code at
    every location of the macro name.

name = label; macro name
size = (optional) label; will be replaced inside macro by
       size modifier (B W L S D X P).
list = list of dummy parameter labels separated by commas; will be
       replaced by arguments from macro call.

See also ENDM, EXITM, LOCAL, REPT and Macros.