Skip to content

Commit ec7ad45

Browse files
committed
fix macros mismatch
1 parent 841e940 commit ec7ad45

File tree

19 files changed

+149
-149
lines changed

19 files changed

+149
-149
lines changed

docs/doc/cmn/386arch.gml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -212,31 +212,31 @@ You must look up the description of a particular instruction to see
212212
what effect it might have, if any, on the flags register.
213213
:image depth='1.5i' file='386ARCH3' text='Flags Register'.
214214
.synote compact
215-
.note VM
215+
.mnote VM
216216
= Virtual 8086 Mode
217-
.note RF
217+
.mnote RF
218218
= Resume Flag
219-
.note NT
219+
.mnote NT
220220
= Nested Task Flag
221-
.note IOPL
221+
.mnote IOPL
222222
= I/O Privilege Level
223-
.note OF
223+
.mnote OF
224224
= Overflow Flag
225-
.note DF
225+
.mnote DF
226226
= Direction Flag
227-
.note IF
227+
.mnote IF
228228
= Interrupt Flag
229-
.note TF
229+
.mnote TF
230230
= Trace Flag
231-
.note SF
231+
.mnote SF
232232
= Sign Flag
233-
.note ZF
233+
.mnote ZF
234234
= Zero Flag
235-
.note AF
235+
.mnote AF
236236
= Auxiliary Carry Flag
237-
.note PF
237+
.mnote PF
238238
= Parity Flag
239-
.note CF
239+
.mnote CF
240240
= Carry Flag
241241
.esynote
242242
.*

docs/doc/cmn/envsetup.gml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ environment variables should be defined before using &cmpname and the
6767
&lnkname. on their own.
6868
.do end
6969
.begnote
70-
.mnote PATH
70+
.note PATH
7171
In order for
7272
.if '&target' eq 'QNX' .do begin
7373
QNX
@@ -137,7 +137,7 @@ called :FNAME.&pathnam.&pc.binp:eFNAME. and
137137
.exam end
138138
.do end
139139
.if '&lang' eq 'C' or '&lang' eq 'C/C++' .do begin
140-
.mnote &incvarup.
140+
.note &incvarup.
141141
In order for &cmpname to locate the &product. header files such as
142142
:FNAME.stdio.h:eFNAME., the
143143
.ev &incvarup.
@@ -166,7 +166,7 @@ environment string is like the
166166
string in that you can specify one or more directories separated by
167167
&psword.s ("&ps.").
168168
.do end
169-
.mnote &pathvarup.
169+
.note &pathvarup.
170170
In order for the &lnkname. to locate the &product. library files, the
171171
.ev &pathvarup.
172172
environment variable should be defined to be the directory

docs/doc/cmn/exe2bin.gml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -172,66 +172,66 @@ by more verbose descriptions and some possible causes.
172172
.*
173173
.begnote $break
174174
.*
175-
.mnote Error opening %s for reading.
175+
.note Error opening %s for reading.
176176
The input executable file could not be opened for reading.
177177
.np
178178
Check that the input file exists and &e2bcmd. has read permissions.
179179
.*
180-
.mnote Error opening %s for writing.
180+
.note Error opening %s for writing.
181181
The output binary file could not be opened for writing.
182182
.np
183183
Make sure the media is not write protected, has enough free space to hold the
184184
output file, and &e2bcmd. has write permissions.
185185
.*
186-
.mnote Error allocating file I/O buffer.
186+
.note Error allocating file I/O buffer.
187187
There is not enough free memory to allocate a file buffer.
188188
.*
189-
.mnote Error reading while copying data.
189+
.note Error reading while copying data.
190190
An error occured while reading the binary part of the input file.
191191
.np
192192
This is most likely due to a corrupted executable header. Run &e2bcmd. with the
193193
&sw.h option and check the size reported. The size of the input file
194194
must be at least ("Number of pages" - 1) * 512 + "Size mod 512". Omit
195195
decrementing the number of pages if "Size mod 512" happens to equal zero.
196196
.*
197-
.mnote Error writing while copying data.
197+
.note Error writing while copying data.
198198
The output binary file can not be written to.
199199
.np
200200
Make sure the media has enough free space to hold the output file and is not
201201
removed while writing to it.
202202
.*
203-
.mnote Error. %s has no valid executable header.
203+
.note Error. %s has no valid executable header.
204204
The signature (the first two bytes of the input file) does not match "MZ".
205205
.np
206206
&e2bcmd. can only use valid DOS executable files as input.
207207
.*
208-
.mnote Error allocating/reading reloc-table.
208+
.note Error allocating/reading reloc-table.
209209
There is either not enough free memory to allocate a buffer for the relocations
210210
(each relocation takes about 4 bytes) or there was an error while reading
211211
from the input file.
212212
.*
213-
.mnote Error. Option "-l=<seg>" mandatory (there are relocations).
213+
.note Error. Option "-l=<seg>" mandatory (there are relocations).
214214
The executable file contains relocations. Therefore, &e2bcmd. needs to know the
215215
segment the binary output file is supposed to reside at.
216216
.np
217217
Either provide a segment as an argument to the &sw.l option or rewrite your
218218
executable file to not contain any relocations.
219219
.*
220-
.mnote Error: Binary part exceeds 64 KBytes.
220+
.note Error: Binary part exceeds 64 KBytes.
221221
The binary part of the input file is larger than 64 KBytes.
222222
.np
223223
The restriction applies because the &sw.x option was not specified.
224224
Check if the extended behaviour is suitable or rewrite the program to shorten
225225
the binary part.
226226
.*
227-
.mnote Error: Stack segment defined.
227+
.note Error: Stack segment defined.
228228
The header defines an initial stack, i.e. ss:sp != 0x0000:0x0000.
229229
.np
230230
The restriction applies because the &sw.x option was not specified.
231231
Check if the extended behaviour is suitable or rewrite the program to not have
232232
a segment of class "stack".
233233
.*
234-
.mnote Error: CS:IP neither 0x0000:0x0000 nor 0x0000:0x0100.
234+
.note Error: CS:IP neither 0x0000:0x0000 nor 0x0000:0x0100.
235235
The header defines an initial cs:ip not matching any of the two values.
236236
.np
237237
The restriction applies because the &sw.x option was not specified.
@@ -240,7 +240,7 @@ different entry point (cf. &lnkname.
240240
.mono "option start"
241241
).
242242
.*
243-
.mnote Error: com-file must not have relocations.
243+
.note Error: com-file must not have relocations.
244244
Although the binary part is <= 64 KByte in length, there is no stack defined
245245
and the cs:ip is 0x0000:0x0100, i.e. &e2bcmd. assumes you try to generate a
246246
".COM" executable, there are relocations in the input file.

docs/doc/cmn/wdis.gml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ The &disname command line syntax is the following.
2525
.np
2626
The square brackets [ ] denote items which are optional.
2727
.begnote
28-
.mnote &discmd
28+
.note &discmd
2929
is the name of the &disname..
30-
.mnote filespec
30+
.note filespec
3131
is the filename specification of the object file to be
3232
disassembled.
3333
A default filename extension of ".o" is assumed when no extension is
@@ -41,7 +41,7 @@ File Specification Extension
4141
/home/john.doe/foo.bar .bar
4242
/home/john.doe/foo.goo.bar .bar
4343
.exam end
44-
.mnote options
44+
.note options
4545
is a list of valid &disname options, each preceded by a dash
4646
("&minus.").
4747
Options may be specified in any order.
@@ -54,22 +54,22 @@ Options may be specified in any order.
5454
.np
5555
The square brackets [ ] denote items which are optional.
5656
.begnote
57-
.mnote &discmdup
57+
.note &discmdup
5858
is the name of the &disname..
59-
.mnote d:
59+
.note d:
6060
is an optional drive specification such as "A:", "B:", etc.
6161
If not specified, the default drive is assumed.
62-
.mnote path
62+
.note path
6363
is an optional path specification such as "\PROGRAMS\OBJ\".
6464
If not specified, the current directory is assumed.
65-
.mnote filename
65+
.note filename
6666
is the file name of the object file to disassemble.
67-
.mnote ext
67+
.note ext
6868
is the file extension of the object file to disassemble.
6969
If omitted, a file extension of "&obj" is assumed.
7070
If the period "." is specified but not the extension, the file is
7171
assumed to have no file extension.
72-
.mnote options
72+
.note options
7373
is a list of valid options, each preceded by a slash
7474
("/") or a dash ("&minus.").
7575
Options may be specified in any order.

docs/doc/cmn/wdisasm.gml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ The &disname command line syntax is the following.
2525
.np
2626
The square brackets [ ] denote items which are optional.
2727
.begnote
28-
.mnote &discmd
28+
.note &discmd
2929
is the name of the &disname..
30-
.mnote filespec
30+
.note filespec
3131
is the filename specification of the object file to be
3232
disassembled.
3333
A default filename extension of ".o" is assumed when no extension is
@@ -41,7 +41,7 @@ File Specification Extension
4141
/home/john.doe/foo.bar .bar
4242
/home/john.doe/foo.goo.bar .bar
4343
.exam end
44-
.mnote options
44+
.note options
4545
is a list of valid &disname options, each preceded by a dash
4646
("&minus.").
4747
Options may be specified in any order.
@@ -54,22 +54,22 @@ Options may be specified in any order.
5454
.np
5555
The square brackets [ ] denote items which are optional.
5656
.begnote
57-
.mnote &discmdup
57+
.note &discmdup
5858
is the name of the &disname..
59-
.mnote d:
59+
.note d:
6060
is an optional drive specification such as "A:", "B:", etc.
6161
If not specified, the default drive is assumed.
62-
.mnote path
62+
.note path
6363
is an optional path specification such as "\PROGRAMS\OBJ\".
6464
If not specified, the current directory is assumed.
65-
.mnote filename
65+
.note filename
6666
is the file name of the object file to disassemble.
67-
.mnote ext
67+
.note ext
6868
is the file extension of the object file to disassemble.
6969
If omitted, a file extension of "&obj" is assumed.
7070
If the period "." is specified but not the extension, the file is
7171
assumed to have no file extension.
72-
.mnote options
72+
.note options
7373
is a list of valid options, each preceded by a slash
7474
("/") or a dash ("&minus.").
7575
Options may be specified in any order.

docs/doc/cmn/womp.gml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,26 +41,26 @@ WOMP [options]* file [options|file]*
4141
.pc
4242
The square brackets [ ] denote items which are optional.
4343
.begpoint
44-
.mnote options
44+
.point options
4545
is a list of valid WOMP options, each preceded by a slash ("/") or a
4646
dash ("&minus.").
4747
Options may be specified in any order.
4848
Options are described below.
49-
.mnote file
49+
.point file
5050
is a file specification which can include wild cards in the file name
5151
and extension parts.
5252
A file specification takes the form:
5353
.begpoint
54-
.mnote d:
54+
.point d:
5555
is an optional drive specification such as "A:", "B:", etc.
5656
If not specified, the default drive is assumed.
57-
.mnote path
57+
.point path
5858
is an optional path specification such as "\PROGRAMS\EXE\".
5959
If not specified, the current directory is assumed.
60-
.mnote file
60+
.point file
6161
is the file name of the object or library file.
6262
The file name may contain an "*" wild card.
63-
.mnote ext
63+
.point ext
6464
is the file extension of the object or library file.
6565
The file extension may contain an "*" wild card.
6666
.endpoint

docs/doc/fg/fplibr.gml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,20 +83,20 @@ strategy with which the modules in the library have been compiled.
8383
.begnote
8484
.ix 'FORTRAN 77 libraries' 'medium'
8585
.ix 'medium model' 'libraries'
86-
.mnote M
86+
.note M
8787
denotes a version of the 16-bit &product libraries which have been
8888
compiled for the "medium" memory model (big code, small data).
8989
.ix 'FORTRAN 77 libraries' 'large'
9090
.ix 'large model' 'libraries'
9191
.ix 'FORTRAN 77 libraries' 'huge'
9292
.ix 'huge model' 'libraries'
93-
.mnote L
93+
.note L
9494
denotes a version of the 16-bit &product libraries which have been
9595
compiled for the "large" or "huge" memory models (big code, big data
9696
or huge data).
9797
.ix 'FORTRAN 77 libraries' 'in-line 80x87 instructions'
9898
.ix 'in-line 80x87 instructions' 'libraries'
99-
.mnote 7
99+
.note 7
100100
denotes a version of the &product libraries which should be used when
101101
compiling with the "fpi" or "fpi87"
102102
option.
@@ -105,7 +105,7 @@ Otherwise the libraries have been compiled using the "fpc" compiler option.
105105
.ix 'flat model' 'libraries'
106106
.ix 'FORTRAN 77 libraries' 'small'
107107
.ix 'small model' 'libraries'
108-
.mnote S
108+
.note S
109109
denotes a version of the 32-bit &product libraries which have been
110110
compiled using the "sc" option (stack calling conventions).
111111
.endnote

docs/doc/fg/fpwfc.gml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,25 +35,25 @@ The formal &product command line syntax is shown below.
3535
.np
3636
The square brackets [ ] denote items which are optional.
3737
.begnote
38-
.mnote &ccmdup16
38+
.note &ccmdup16
3939
is the name of the 16-bit &cmpname compiler.
40-
.mnote &ccmdup32
40+
.note &ccmdup32
4141
is the name of the 32-bit &cmpname compiler.
42-
.mnote d:
42+
.note d:
4343
is an optional drive specification such as "A:", "B:", etc.
4444
If not specified, the default drive is assumed.
45-
.mnote path
45+
.note path
4646
is an optional path specification such as
4747
.fi \PROGRAMS\SRC\.
4848
If not specified, the current directory is assumed.
49-
.mnote filename
49+
.note filename
5050
is the file name of the file to be compiled.
51-
.mnote ext
51+
.note ext
5252
is the file extension of the file to be compiled.
5353
If omitted, a file extension of "&langsuffup" is assumed.
5454
If the period "." is specified but not the extension, the file is
5555
assumed to have no file extension.
56-
.mnote options
56+
.note options
5757
is a list of valid &cmpname options, each preceded by a slash ("/") or
5858
a dash ("&minus.").
5959
Certain options can include a "no" prefix to disable an option.

0 commit comments

Comments
 (0)