RISCOS.com

www.riscos.com Technical Support:
Acorn Assembler

 


Directives


This chapter describes the directives available in the assembler, which provide a powerful range of extra features.

Storage reservation and initialisation - DCB, DCW and DCD

DCB Defines one or more bytes: can be replaced by =
DCW Defines one or more half-words (16-bit numbers)
DCD Defines one or more words: can be replaced by &
% Reserves a zeroed area of store

The syntax of the first three directives is:

«label» directive expression-list

DCD can take program-relative and external expressions as well as numeric ones. In the case of DCB, the expression-list can include string expressions, the characters of which are loaded into consecutive bytes in store. Unlike C-strings, ObjAsm strings do not contain an implicit trailing NUL, so a C-string has to be fabricated thus:

C_string DCB "C_string",0

The syntax of % is:

«label» % numeric-expression

This directive will initialise to zero the number of bytes specified by the numeric expression.

Note that an external expression consists of an external symbol followed optionally by a constant expression. The external symbol must come first.

Floating point store initialisation - DCFS and DCFD

DCFS Defines single precision floating point values
DCFD efines double precision floating point values

The syntax of these directives is:

«label» directive fp-constant«,fp-constant»

Single precision numbers occupy one word, and double precision numbers occupy two; both should be word aligned. An fp-constant takes one of the following forms:

«-»integer E«-»integer             e.g. 1E3, -4E-9
«-»«integer».integer«E«-»integer»  e.g. 1.0, -.1, 3.1E6

E may also be written in lower case.

Describing the layout of store - ^ and #

^ Sets the origin of a storage map
# Reserves space within a storage map

The syntax of these directives is:

        ^ expression«,base-register»
«label» # expression

The ^ directive sets the origin of a storage map at the address specified by the expression. A storage map location counter, @, is also set to the same address. The expression must be fully evaluable in the first pass of the assembly, but may be program-relative. If no ^ directive is used, the @ counter is set to zero. @ can be reset any number of times using ^ to allow many storage maps to be established.

Space within a storage map is described by the # directive. Every time # is used its label (if any) is given the value of the storage location counter @, and @ is then incremented by the number of bytes reserved.

In a ^ directive with a base register, the register becomes implicit in all symbols defined by # directives which follow, until cancelled by a subsequent ^ directive. These register-relative symbols can later be quoted in load and store instructions. For example:

        ^ 0,r9
        # 4
Lab     # 4
        LDR r0,Lab

is equivalent to:

        LDR r0,[r9,#4]

Organisational directives - END, ORG, LTORG and KEEP

END

The assembler stops processing a source file when it reaches the END directive. If assembly of the file was invoked by a GET directive, the assembler returns and continues after the GET directive (see Links to other source files - GET/INCLUDE). If END is reached in the top-level source file during the first pass without any errors, the second pass will begin. Failing to end a file with END is an error.

ORG numeric-expression

A program's origin is determined by the ORG directive, which sets the initial value of the program location counter. Only one ORG is allowed in an assembly and no ARM instructions or store initialisation directives may precede it. If there is no ORG, the program is relocatable and the program counter is initialised to 0.

LTORG

LTORG directs that the current literal pool be assembled immediately following it. A default LTORG is executed at every END directive which is not part of a nested assembly, but large programs may need several literal pools, each closer to where their literals are used to avoid violating LDR's 4KB offset limit.

KEEP «symbol»

The assembler does not by default describe local symbols (i.e. non-exported symbols; see Links to other object files - IMPORT and EXPORT) in its output object file. However, they can be retained in the object file's symbol table by using the KEEP directive. If the directive is used alone all symbols are kept; if only a specific symbol needs to be kept it can be specified by name.

Links to other object files - IMPORT and EXPORT

IMPORT symbol«[FPREGARGS]»«,WEAK»
EXPORT symbol«[FPREGARGS,DATA,LEAF]»

IMPORT provides the assembler with a name (symbol) which is not defined in this assembly, but will be resolved at link time to a symbol defined in another, separate object file. The symbol is treated as a program address; if the WEAK attribute is given the Linker will not fault an unresolved reference to this symbol, but will zero the location referring to it. If [FPREGARGS] is present, the symbol defines a function which expects floating point arguments passed to it in floating point registers.

EXPORT declares a symbol for use at link time by other, separate object files. FPREGARGS signifies that the symbol defines a function which expects floating point arguments to be passed to it in floating point registers. DATA denotes that the symbol defines a code-segment datum rather than a function or a procedure entry point, and LEAF that it is a leaf function which calls no other functions.

Links to other source files - GET/INCLUDE

GET filename
INCLUDE filename

GET includes a file within the file being assembled. This file may in turn use GET directives to include further files. Once assembly of the included file is complete, assembly continues in the including file at the line following the GET directive. INCLUDE is a synonym for GET.

Diagnostic generation - ASSERT and !

ASSERT logical-expression
! arithmetic-expression, string-expression

ASSERT supports diagnostic generation. If the logical expression returns {FALSE}, a diagnostic is generated during the second pass of the assembly. ASSERT can be used both inside and outside macros.

! is related to ASSERT but is inspected on both passes of the assembly, providing a more flexible means for creating custom error messages. The arithmetic expression is evaluated; if it equals zero, no action is taken during pass one, but the string is printed as a warning during pass two; if the expression does not equal zero, the string is printed as a diagnostic and the assembly halts after pass one.

Dynamic listing options - OPT

The OPT directive is used to set listing options from within the source code, providing that listing is turned on. The default setting is to produce a normal listing including the declaration of variables, macro expansions, call-conditioned directives and MEND directives, but without producing a pass one listing. These settings can be altered by adding the appropriate values from the list below, and using them with the OPT directive as follows:

OPT n Effect
1 Turns on normal listing.
2 Turns off normal listing.
4 Page throw: issues an immediate form feed and starts a new page.
8 Resets the line number counter to zero.
16 Turns on the listing of SET, GBL and LCL directives.
32 Turns off the listing of SET, GBL and LCL directives.
64 Turns on the listing of macro expansions.
128 Turns off the listing of macro expansions.
256 Turns on the listing of macro calls.
512 Turns off the listing of macro calls.
1024 Turns on the pass one listing.
2048 Turns off the pass one listing.
4096 Turns on the listing of conditional directives.
8192 Turns off the listing of conditional directives.
16384 Turns on the listing of MEND directives.
32768 Turns off the listing of MEND directives.

Titles - TTL and SUBT

Titles can be specified within the code using the TTL (title) and SUBT (subtitle) directives. Each is used on all pages until a new title or subtitle is called. If more than one appears on a page, only the latest will be used: the directives alone create blank lines at the top of the page. The syntax is:

TTL title
SUBT subtitle

Miscellaneous directives - ALIGN, NOFP, RLIST and ENTRY

ALIGN «power-of-two«,offset-expression»»

After store-loading directives have been used, the program counter (PC) will not necessarily point to a word boundary. If an instruction mnemonic is then encountered, the assembler will insert up to three bytes of zeros to achieve alignment. However, an intervening label may not then address the following instruction. If this label is required, ALIGN should be used. On its own, ALIGN sets the instruction location to the next word boundary. The optional power-of-two parameter - which is given in bytes - can be used to align with a coarser byte boundary, and the offset expression parameter to define a byte offset from that boundary.

NOFP

In some circumstances there will be no support in either target hardware or software for floating point instructions. In these cases the NOFP directive can be used to ensure that no floating point instructions or directives are allowed in the code.

RLIST

The syntax of this directive is:

label RLIST list-of-registers

The RLIST (register list) directive can be used to give a name to a set of registers to be transferred by LDM or STM. List-of-registers is a list of register names or ranges enclosed in {} (see Block data transfer (LDM, STM)).

ENTRY

The ENTRY directive declares its offset in its containing AREA to be the unique entry point to any program containing this AREA.

This edition Copyright © 3QD Developments Ltd 2015
Last Edit: Tue,03 Nov 2015