Skip to content

Commit

Permalink
Update man page
Browse files Browse the repository at this point in the history
  • Loading branch information
Rangi42 committed Feb 14, 2025
1 parent b6876f4 commit b2b3486
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions man/rgbasm.5
Original file line number Diff line number Diff line change
Expand Up @@ -1104,8 +1104,8 @@ Additionally, label names can contain up to a single dot
.Ql \&. ,
which may not be the first character.
.Pp
A symbol cannot have the same name as a reserved keyword, unless it is a
.Dq raw symbol
A symbol cannot have the same name as a reserved keyword, unless its name is a
.Dq raw identifier
prefixed by a hash
.Sq # .
For example,
Expand Down Expand Up @@ -1281,7 +1281,7 @@ it at the same time.
below).
.Ss Numeric constants
.Ic EQU
is used to define immutable numeric symbols.
is used to define numeric constant symbols.
Unlike
.Sq =
above, constants defined this way cannot be redefined.
Expand Down Expand Up @@ -1389,8 +1389,8 @@ This expansion is disabled in a few contexts:
and
.Ql MACRO name
will not expand string constants in their names.
Expansion is also disabled for raw string constant symbols (string constant symbols prefixed by a hash
.Sq # ) .
Expansion is also disabled if the string constant's name is a raw identifier prefixed by a hash
.Sq # .
.Bd -literal -offset indent
DEF COUNTREG EQUS "[hl+]"
ld a, COUNTREG
Expand Down Expand Up @@ -1856,7 +1856,7 @@ being the second, and so on. Since there are only nine digits, you can only use
To use the rest, you put the argument number in angle brackets, like
.Ic \e<10> .
.Pp
This bracketed syntax supports decimal numbers and numeric constant symbols.
This bracketed syntax supports decimal numbers and numeric symbols.
For example,
.Ql \e<_NARG>
will get the last argument.
Expand Down

0 comments on commit b2b3486

Please sign in to comment.