Fix some formatting errors in man pages

This commit is contained in:
ISSOtm
2023-12-24 17:12:23 +01:00
parent d5cddb202c
commit 98cecaee9e
4 changed files with 10 additions and 10 deletions

View File

@@ -628,7 +628,7 @@ Enter CPU low-power consumption mode until an interrupt occurs.
The exact behavior of this instruction depends on the state of the The exact behavior of this instruction depends on the state of the
.Sy IME .Sy IME
flag. flag.
.Bl -tag -width indent .Bl -tag -width Ds
.It Sy IME No set .It Sy IME No set
The CPU enters low-power mode until The CPU enters low-power mode until
.Em after .Em after
@@ -640,7 +640,7 @@ when that returns.
The behavior depends on whether an interrupt is pending (i.e.\& The behavior depends on whether an interrupt is pending (i.e.\&
.Ql [IE] & [IF] .Ql [IE] & [IF]
is non-zero). is non-zero).
.Bl -tag -width indent .Bl -tag -width Ds
.It None pending .It None pending
As soon as an interrupt becomes pending, the CPU resumes execution. As soon as an interrupt becomes pending, the CPU resumes execution.
This is like the above, except that the handler is This is like the above, except that the handler is

View File

@@ -1328,13 +1328,13 @@ and so on to be accessible to other files during the link process:
For example, if you have the following three files: For example, if you have the following three files:
.Pp .Pp
.Ql a.asm : .Ql a.asm :
.Bd -literal -compact .Bd -literal -offset indent -compact
SECTION "a", WRAM0 SECTION "a", WRAM0
LabelA: LabelA:
.Ed .Ed
.Pp .Pp
.Ql b.asm : .Ql b.asm :
.Bd -literal -compact .Bd -literal -offset indent -compact
SECTION "b", WRAM0 SECTION "b", WRAM0
ExportedLabelB1:: ExportedLabelB1::
ExportedLabelB2: ExportedLabelB2:
@@ -1342,7 +1342,7 @@ ExportedLabelB2:
.Ed .Ed
.Pp .Pp
.Ql c.asm : .Ql c.asm :
.Bd -literal -compact .Bd -literal -offset indent -compact
SECTION "C", ROM0[0] SECTION "C", ROM0[0]
dw LabelA dw LabelA
dw ExportedLabelB1 dw ExportedLabelB1
@@ -1358,7 +1358,7 @@ and
but not but not
.Ql LabelA , .Ql LabelA ,
so linking them together will fail: so linking them together will fail:
.Bd -literal .Bd -literal -offset indent
$ rgbasm -o a.o a.asm $ rgbasm -o a.o a.asm
$ rgbasm -o b.o b.asm $ rgbasm -o b.o b.asm
$ rgbasm -o c.o c.asm $ rgbasm -o c.o c.asm

View File

@@ -318,8 +318,8 @@ RGBDS encodes RPN expressions as an array of
.Cm BYTE Ns s . .Cm BYTE Ns s .
The first byte encodes either an operator, or a literal, which consumes more The first byte encodes either an operator, or a literal, which consumes more
.Cm BYTE Ns s .Cm BYTE Ns s
after it. after it:
.Bl -column -offset Ds "Value" .Bl -column "Value"
.It Sy Value Ta Sy Meaning .It Sy Value Ta Sy Meaning
.It Li $00 Ta Addition operator Pq Ql + .It Li $00 Ta Addition operator Pq Ql +
.It Li $01 Ta Subtraction operator Pq Ql - .It Li $01 Ta Subtraction operator Pq Ql -

View File

@@ -281,7 +281,7 @@ Print the version of the program and exit.
.It Fl v , Fl \-verbose .It Fl v , Fl \-verbose
Be verbose. Be verbose.
The verbosity level is increased by one each time the flag is specified, with each level including the previous: The verbosity level is increased by one each time the flag is specified, with each level including the previous:
.Bl -enum -width 2n -compact .Bl -enum -compact
.It .It
.Nm .Nm
prints out its configuration before doing anything. prints out its configuration before doing anything.