Update .s documentation

This commit is contained in:
ggn 2022-04-17 12:41:45 +03:00 committed by Shamus Hammons
parent 7d0a01ef5e
commit ca744716ef
1 changed files with 5 additions and 3 deletions

View File

@ -925,9 +925,11 @@ symbol **debug** external, instead of including another source file).
Assembler directives may be any mix of upper- or lowercase. The leading periods
are optional, though they are shown here and their use is encouraged. Directives
may be preceeded by a label; the label is defined before the directive is executed.
Some directives accept size suffixes (**.b**, **.s**, **.w** or **.1**); the default is word (**.w**) if no
size is specified. The **.s** suffix is identical to **.b**. Directives relating to the 6502 are
described in the chapter on `6502 Support`_.
Some directives accept size suffixes (**.b**, **.s**, **.w**, **.1**, **.d**, **.x**, **.p**, or **.q**);
the default is word (**.w**) if no size is specified. The **.s** suffix is identical to **.b**,
with the exception of being used in a **dc** statement. In that case the **.s**
refers to single precision floating point numbers.
Directives relating to the 6502 are described in the chapter on `6502 Support`_.