Changes between Version 46 and Version 47 of ClrxAsmPseudoOps


Ignore:
Timestamp:
02/16/25 09:00:42 (4 weeks ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ClrxAsmPseudoOps

    v46 v47  
    55<p>The CLRX assembler accepts the almost pseudo-operations from GNU assembler.
    66This chapter lists and explains standard pseudo-operations.</p>
    7 <p>A CLRX assembler stores values greater than byte in the little-endian ordering.</p>
     7<p>The CLRX assembler stores values greater than byte in the little-endian ordering.</p>
    88<h2>List of the pseudo-operations</h2>
    99<h3>.32bit</h3>
     
    578578then assembler searches file in the include paths. If file not found again then assembler
    579579prints error. Second optional argument defines offset (how many bytes should to be skipped).
    580 By default assembler begin appending from first byte.
     580By default assembler begins appending from first byte.
    581581Third argument defines maximum number bytes to append. By default all data from binary
    582582will be appended.</p>
     
    584584<p>Syntax: .include "FILENAME"</p>
    585585<p>Include new source code file and begins assemblying from this file.
    586 An assembler automatically returns to previous file if encounters end of the that file.
     586The assembler automatically returns to previous file if encounters end of the that file.
    587587If file not found in the current directory then assembler searches file in the
    588588include paths. If file not found again then assembler prints error.</p>
     
    641641<p>Syntax: .macro MACRONAME, ARG,...<br />
    642642Syntax: .macro MACRONAME ARG ...</p>
    643 <p>Begin macro definition. The macro is recorded code that can be used later in source code.
     643<p>Begins macro definition. The macro is recorded code that can be used later in source code.
    644644Macro can accepts one or more arguments that will be substituted in its body.
    645645Occurrence of the argument must be preceded by <code>\</code> character.</p>