Changes between Version 46 and Version 47 of ClrxAsmPseudoOps
- Timestamp:
- 02/16/25 09:00:42 (4 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ClrxAsmPseudoOps
v46 v47 5 5 <p>The CLRX assembler accepts the almost pseudo-operations from GNU assembler. 6 6 This chapter lists and explains standard pseudo-operations.</p> 7 <p> ACLRX 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> 8 8 <h2>List of the pseudo-operations</h2> 9 9 <h3>.32bit</h3> … … 578 578 then assembler searches file in the include paths. If file not found again then assembler 579 579 prints error. Second optional argument defines offset (how many bytes should to be skipped). 580 By default assembler begin appending from first byte.580 By default assembler begins appending from first byte. 581 581 Third argument defines maximum number bytes to append. By default all data from binary 582 582 will be appended.</p> … … 584 584 <p>Syntax: .include "FILENAME"</p> 585 585 <p>Include new source code file and begins assemblying from this file. 586 Anassembler automatically returns to previous file if encounters end of the that file.586 The assembler automatically returns to previous file if encounters end of the that file. 587 587 If file not found in the current directory then assembler searches file in the 588 588 include paths. If file not found again then assembler prints error.</p> … … 641 641 <p>Syntax: .macro MACRONAME, ARG,...<br /> 642 642 Syntax: .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. 644 644 Macro can accepts one or more arguments that will be substituted in its body. 645 645 Occurrence of the argument must be preceded by <code>\</code> character.</p>