From: ggn Date: Sun, 17 Apr 2022 09:41:45 +0000 (+0300) Subject: Update .s documentation X-Git-Tag: v2.1.14~4 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca744716ef85b25c66ebd03d54035e06a89558fc;hp=7d0a01ef5e5738192ac3a11c5db383767f737158;p=rmac Update .s documentation --- diff --git a/docs/rmac.rst b/docs/rmac.rst index 50083e4..e8ba296 100644 --- a/docs/rmac.rst +++ b/docs/rmac.rst @@ -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`_.