qa.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
LOCAL (in macros)
   Directive Summary  Summary  LOCAL in Procedures
──────────────────────────────────────────────────────────────────────────────
 
  Syntax:  LOCAL localname [,localname]...
 
  Declares that a label or symbol to be used locally within a macro or
  repeat block. The assembler generates a different name for the symbol
  each time it expands the macro, thus permitting you to call a macro
  that may contain local jump statements without generating the same
  label twice.
 
  localname   The name of a label or symbol that can appear elsewhere in
              the macro. Separate multiple localnames with commas.
 
   See Also:  MACRO, ENDM, EXITM, REPT, IRP, IRPC
                                    -♦-