Changes between Version 33 and Version 34 of ClrxAsmPseudoOps


Ignore:
Timestamp:
01/18/18 20:00:33 (6 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ClrxAsmPseudoOps

    v33 v34  
    755755<p>Indicates that symbols will be a weak. Currently, unused feature of the symbol by
    756756the CLRX assembler.</p>
     757<h3>.while</h3>
     758<p>Syntax: .while COND-EXPR</p>
     759<p>Open 'while' repetition.The code between this pseudo-operation and <code>.endr</code> will be repeated
     760until COND-EXPR returns zero. Example:</p>
     761<p><code>x=1
     762.while x&lt;16
     763    .int x
     764    x=x+1
     765.endr</code></p>
     766<p>generates:</p>
     767<p><code>.int x      # x=1
     768.int x      # x=2
     769.int x      # x=4
     770.int x      # x=8</code></p>
    757771<h3>.word</h3>
    758772<p>Syntax: .word ABS-EXPR,....</p>