Return to previous page Return to menu Go to next page

    

.MACRO, .XMACRO

  Format  .NACRO Macro expansion list can be output
.  .XMACRO Macro expansion list cannot be output 

Description Default is possible. However, list output in the project If the switch is off, the list will not be output unconditionally.

<

.IF, .XIF

  format  .IF A list of lines skipped by the conditional assembly function can be output
.  .XIF Cannot output a list of lines skipped by the conditional assembly function 

Description The default is list output. However, if the list output switch is turned off for the project List output is not performed unconditionally.

[Example] bbb equ 1 . .XIF if bbb : move.w d0, d1 ---------------- Assemble and output list else else : move.w d0, d1 ---------------- Assembly is not performed and the list is not output end endif


Return to previous page Return to menu Go to next page