Directives Reference
ARM DUI 0068B Copyright © 2000, 2001 ARM Limited. All r ights reserved. 7-29
Using a macro to produce assembly-time diagnostics:
MACRO ; Macro definition
diagnose $param1="default" ; This macro produces
INFO 0,"$param1" ; assembly-time diagnostics
MEND ; (on second assembly pass)
; macro expansion
diagnose ; Prints blank line at assembly-time
diagnose "hello" ; Prints "hello" at assembly-time
diagnose | ; Prints "default" at assembly-time
7.4.3 MEXIT
The
MEXIT
directive is used to exit a macro definition before the end.
Usage
Use
MEXIT
when you need an exit from within the body of a macro. Any unclosed
WHILE...WEND
loops or
IF...ENDIF
conditions within the body of the macro are closed by
the assembler befor e the macro is exit ed.
See also MACRO and MEND on page7-27.
Example
MACRO
$abc macro abc $param1,$param2
; code
WHILE condition1
; code
IF condition2
; code
MEXIT
ELSE
; code
ENDIF
WEND
; code
MEND