Consistently refer to "directives", not "pseudo-ops"

Some docs and warnings already referred to SECTION and
db/dw/dl "directives", but others used "pseudo-ops".
This commit is contained in:
Rangi
2021-01-15 20:31:22 -05:00
committed by Eldred Habert
parent 15ec6efc28
commit fb39c3a70e
3 changed files with 12 additions and 12 deletions

View File

@@ -29,7 +29,7 @@ but any program that processes RGB object files (described in
.Xr rgbds 5 )
can be used in its place.
.Sh SYNTAX
The syntax is linebased, just as in any other assembler, meaning that you do one instruction or pseudoop per line:
The syntax is linebased, just as in any other assembler, meaning that you do one instruction or directive per line:
.Pp
.Dl Oo Ar label Oc Oo Ar instruction Oc Oo Ar ;\ comment Oc
.Pp
@@ -38,7 +38,7 @@ Example:
John: ld a,87 ;Weee
.Ed
.Pp
All reserved keywords (pseudoops, mnemonics, registers, etc.) are caseinsensitive;
All reserved keywords (directives, mnemonics, registers, etc.) are caseinsensitive;
all identifiers (symbol names) are case-sensitive.
.Pp
Comments are used to give humans information about the code, such as explanations.