Changes between Version 38 and Version 39 of ClrxAsmPseudoOps


Ignore:
Timestamp:
05/08/18 09:00:34 (6 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ClrxAsmPseudoOps

    v38 v39  
    148148<p>Close visibility's scope.</p>
    149149<h3>.enum</h3>
    150 <p>Syntax: .enum [&gt;STARTPOS,] SYMBOL,....</p>
     150<p>Syntax: .enum [&gt;[STARTPOS],] SYMBOL,....</p>
    151151<p>Simplify defining the enumerations. For every symbol,
    152152define symbol with value of enumeration counter and increase an enumeration counter.
    153 Defined symbols can not be assigned later. Optional STARTPOS sets enumeration counter
    154 to STARTPOS value. Every scope has own enumeration counter. This features simplify
     153Defined symbols can not be assigned later. Optional <code>&gt;</code> with optional STARTPOS sets
     154enumeration counter to STARTPOS value or zero (if no STARTPOS given).
     155Every scope has own enumeration counter. This features simplify
    155156joining enumerations with scopes.</p>
    156157<p>Examples:</p>
     
    161162    # enum counter is zero in this scope
    162163    .enum NONE,FULL,INVALID   # NONE=0, FULL=1, INVALID=2
    163 .ends</code></p>
     164.ends
     165.enum &gt;, myzero             # myzero=0</code></p>
    164166<h3>.equ, .set</h3>
    165167<p>Syntax: .equ SYMBOL, EXPR|REG<br />