coff: Better handling of section redefinition
[nasm.git] / nasm.1
blob632e01f534fc33afb82eb944aef5334e34fc70ec
1 '\" t
2 .\"     Title: nasm
3 .\"    Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4 .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5 .\"      Date: 07/22/2013
6 .\"    Manual: The Netwide Assembler Project
7 .\"    Source: NASM
8 .\"  Language: English
9 .\"
10 .TH "NASM" "1" "07/22/2013" "NASM" "The Netwide Assembler Project"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 nasm \- the Netwide Assembler, a portable 80x86 assembler
32 .SH "SYNOPSIS"
33 .sp
34 \fBnasm\fR [\fB\-@\fR response file] [\fB\-f\fR format] [\fB\-o\fR outfile] [\fB\-l\fR listfile] [\fIoptions\fR\&...] filename
35 .SH "DESCRIPTION"
36 .sp
37 The \fBnasm\fR command assembles the file \fIfilename\fR and directs output to the file \fIoutfile\fR if specified\&. If \fIoutfile\fR is not specified, \fBnasm\fR will derive a default output file name from the name of its input file, usually by appending \(oq\&.o\(cq or \(oq\&.obj\(cq, or by removing all extensions for a raw binary file\&. Failing that, the output file name will be \(oqnasm\&.out\(cq\&.
38 .SH "OPTIONS"
39 .PP
40 \fB\-@\fR \fIfilename\fR
41 .RS 4
42 Causes
43 \fBnasm\fR
44 to process options from filename as if they were included on the command line\&.
45 .RE
46 .PP
47 \fB\-a\fR
48 .RS 4
49 Causes
50 \fBnasm\fR
51 to assemble the given input file without first applying the macro preprocessor\&.
52 .RE
53 .PP
54 \fB\-D\fR|\fB\-d\fR \fImacro[=value]\fR
55 .RS 4
56 Pre\-defines a single\-line macro\&.
57 .RE
58 .PP
59 \fB\-E\fR|\fB\-e\fR
60 .RS 4
61 Causes
62 \fBnasm\fR
63 to preprocess the given input file, and write the output to
64 \fIstdout\fR
65 (or the specified output file name), and not actually assemble anything\&.
66 .RE
67 .PP
68 \fB\-f\fR \fIformat\fR
69 .RS 4
70 Specifies the output file format\&. To see a list of valid output formats, use the
71 \fB\-hf\fR
72 option\&.
73 .RE
74 .PP
75 \fB\-F\fR \fIformat\fR
76 .RS 4
77 Specifies the debug information format\&. To see a list of valid output formats, use the
78 \fB\-y\fR
79 option (for example
80 \fB\-felf \-y\fR)\&.
81 .RE
82 .PP
83 \fB\-g\fR
84 .RS 4
85 Causes
86 \fBnasm\fR
87 to generate debug information in selected format\&.
88 .RE
89 .PP
90 \fB\-h\fR
91 .RS 4
92 Causes
93 \fBnasm\fR
94 to exit immediately, after giving a summary of its invocation options\&.
95 .RE
96 .PP
97 \fB\-hf\fR
98 .RS 4
99 Same as
100 \fB\-h\fR
101 , but also lists all valid output formats\&.
104 \fB\-I\fR|\fB\-i\fR \fIdirectory\fR
105 .RS 4
106 Adds a directory to the search path for include files\&. The directory specification must include the trailing slash, as it will be directly prepended to the name of the include file\&.
109 \fB\-l\fR \fIlistfile\fR
110 .RS 4
111 Causes an assembly listing to be directed to the given file, in which the original source is displayed on the right hand side (plus the source for included files and the expansions of multi\-line macros) and the generated code is shown in hex on the left\&.
114 \fB\-M\fR
115 .RS 4
116 Causes
117 \fBnasm\fR
118 to output Makefile\-style dependencies to stdout; normal output is suppressed\&.
121 \fB\-MG\fR \fIfile\fR
122 .RS 4
123 Same as
124 \fB\-M\fR
125 but assumes that missing Makefile dependecies are generated and added to dependency list without a prefix\&.
128 \fB\-MF\fR \fIfile\fR
129 .RS 4
130 Output Makefile\-style dependencies to the specified file\&.
133 \fB\-MD\fR \fIfile\fR
134 .RS 4
135 Same as a combination of
136 \fB\-M\fR
138 \fB\-MF\fR
139 options\&.
142 \fB\-MT\fR \fIfile\fR
143 .RS 4
144 Override the default name of the dependency target dependency target name\&. This is normally the same as the output filename, specified by the
145 \fB\-o\fR
146 option\&.
149 \fB\-MQ\fR \fIfile\fR
150 .RS 4
151 The same as
152 \fB\-MT\fR
153 except it tries to quote characters that have special meaning in Makefile syntax\&. This is not foolproof, as not all characters with special meaning are quotable in Make\&.
156 \fB\-MP\fR
157 .RS 4
158 Emit phony target\&.
161 \fB\-O\fR \fInumber\fR
162 .RS 4
163 Optimize branch offsets\&.
165 .RS 4
166 .ie n \{\
167 \h'-04'\(bu\h'+03'\c
169 .el \{\
170 .sp -1
171 .IP \(bu 2.3
173 \fB\-O0\fR: No optimization
176 .RS 4
177 .ie n \{\
178 \h'-04'\(bu\h'+03'\c
180 .el \{\
181 .sp -1
182 .IP \(bu 2.3
184 \fB\-O1\fR: Minimal optimization
187 .RS 4
188 .ie n \{\
189 \h'-04'\(bu\h'+03'\c
191 .el \{\
192 .sp -1
193 .IP \(bu 2.3
195 \fB\-Ox\fR: Multipass optimization (default)
199 \fB\-o\fR \fIoutfile\fR
200 .RS 4
201 Specifies a precise name for the output file, overriding
202 \fBnasm\fR\*(Aqs default means of determining it\&.
205 \fB\-P\fR|\fB\-p\fR \fIfile\fR
206 .RS 4
207 Specifies a file to be pre\-included, before the main source file starts to be processed\&.
210 \fB\-s\fR
211 .RS 4
212 Causes
213 \fBnasm\fR
214 to send its error messages and/or help text to stdout instead of stderr\&.
217 \fB\-t\fR
218 .RS 4
219 Causes
220 \fBnasm\fR
221 to assemble in SciTech TASM compatible mode\&.
224 \fB\-U\fR|\fB\-u\fR \fImacro\fR
225 .RS 4
226 Undefines a single\-line macro\&.
229 \fB\-v\fR
230 .RS 4
231 Causes
232 \fBnasm\fR
233 to exit immediately, after displaying its version number\&.
236 *\-W[no\-]foo\*(Aq
237 .RS 4
238 Causes
239 \fBnasm\fR
240 to enable or disable certain classes of warning messages, in gcc\-like style, for example
241 \fB\-Worphan\-labels\fR
243 \fB\-Wno\-orphan\-labels\fR\&.
246 \fB\-w\fR\fI[+\-]foo\fR
247 .RS 4
248 Causes
249 \fBnasm\fR
250 to enable or disable certain classes of warning messages, for example
251 \fB\-w+orphan\-labels\fR
253 \fB\-w\-macro\-params\fR\&.
256 \fB\-X\fR \fIformat\fR
257 .RS 4
258 Specifies error reporting format (gnu or vc)\&.
261 \fB\-y\fR
262 .RS 4
263 Causes
264 \fBnasm\fR
265 to list supported debug formats\&.
268 \fB\-Z\fR \fIfilename\fR
269 .RS 4
270 Causes
271 \fBnasm\fR
272 to redirect error messages to
273 \fIfilename\fR\&. This option exists to support operating systems on which stderr is not easily redirected\&.
276 \-\-prefix, \-\-postfix
277 .RS 4
278 Prepend or append (respectively) the given argument to all global or extern variables\&.
280 .SH "SYNTAX"
282 This man page does not fully describe the syntax of \fBnasm\fR\*(Aqs assembly language, but does give a summary of the differences from other assemblers\&.
284 \fIRegisters\fR have no leading \(oq%\(cq sign, unlike \fBgas\fR, and floating\-point stack registers are referred to as \fIst0\fR, \fIst1\fR, and so on\&.
286 \fIFloating\-point instructions\fR may use either the single\-operand form or the double\&. A \fITO\fR keyword is provided; thus, one could either write
288 .if n \{\
289 .RS 4
292 fadd st0,st1
293 fadd st1,st0
295 .if n \{\
299 or one could use the alternative single\-operand forms
301 .if n \{\
302 .RS 4
305 fadd st1
306 fadd to st1
308 .if n \{\
312 \fIUninitialised storage\fR is reserved using the \fIRESB\fR, \fIRESW\fR, \fIRESD\fR, \fIRESQ\fR, \fIREST\fR and \fIRESO\fR pseudo\-opcodes, each taking one parameter which gives the number of bytes, words, doublewords, quadwords or ten\-byte words to reserve\&.
314 \fIRepetition\fR of data items is not done by the \fIDUP\fR keyword as seen in DOS assemblers, but by the use of the \fITIMES\fR prefix, like this:
316 .if n \{\
317 .RS 4
320 message: times 3 db \*(Aqabc\*(Aq
321          times 64\-$+message db 0
323 .if n \{\
327 which defines the string abcabcabc, followed by the right number of zero bytes to make the total length up to 64 bytes\&.
329 \fISymbol references\fR are always understood to be immediate (i\&.e\&. the address of the symbol), unless square brackets are used, in which case the contents of the memory location are used\&. Thus:
331 .if n \{\
332 .RS 4
335 mov ax,wordvar
337 .if n \{\
341 loads AX with the address of the variable wordvar, whereas
343 .if n \{\
344 .RS 4
347 mov ax,[wordvar]
348 mov ax,[wordvar+1]
349 mov ax,[es:wordvar+bx]
351 .if n \{\
355 all refer to the \fIcontents\fR of memory locations\&. The syntaxes
357 .if n \{\
358 .RS 4
361 mov ax,es:wordvar[bx]
362 es mov ax,wordvar[1]
364 .if n \{\
368 are not legal at all, although the use of a segment register name as an instruction prefix is valid, and can be used with instructions such as \fILODSB\fR which can\(cqt be overridden any other way\&.
370 \fIConstants\fR may be expressed numerically in most formats: a trailing H, Q or B denotes hex, octal or binary respectively, and a leading \(oq0x\(cq or \(oq$\(cq denotes hex as well\&. Leading zeros are not treated specially at all\&. Character constants may be enclosed in single or double quotes; there is no escape character\&. The ordering is little\-endian (reversed), so that the character constant \fI\*(Aqabcd\fR\*(Aq denotes 0x64636261 and not 0x61626364\&.
372 Local labels begin with a period, and their \(oqlocality\(cq is granted by the assembler prepending the name of the previous non\-local symbol\&. Thus declaring a label \(oq\&.loop\(cq after a label \(oqlabel\(cq has actually defined a symbol called \(oqlabel\&.loop\(cq\&.
373 .SH "DIRECTIVES"
375 \fISECTION\fR \fIname\fR or \fISEGMENT\fR \fIname\fR causes \fBnasm\fR to direct all following code to the named section\&. Section names vary with output file format, although most formats support the names \fI\&.text\fR, \fI\&.data\fR and \fI\&.bss\fR\&. (The exception is the \fIobj\fR format, in which all segments are user\-definable\&.)
377 \fIABSOLUTE\fR \fIaddress\fR causes \fBnasm\fR to position its notional assembly point at an absolute address: so no code or data may be generated, but you can use \fIRESB\fR, \fIRESW\fR and \fIRESD\fR to move the assembly point further on, and you can define labels\&. So this directive may be used to define data structures\&. When you have finished doing absolute assembly, you must issue another \fISECTION\fR directive to return to normal assembly\&.
379 \fIBITS\fR \fI16\fR, \fIBITS\fR \fI32\fR or \fIBITS\fR \fI64\fR switches the default processor mode for which \fBnasm\fR is generating code: it is equivalent to \fIUSE16\fR or \fIUSE32\fR in DOS assemblers\&.
381 \fIEXTERN\fR \fIsymbol\fR and \fIGLOBAL\fR \fIsymbol\fR import and export symbol definitions, respectively, from and to other modules\&. Note that the \fIGLOBAL\fR directive must appear before the definition of the symbol it refers to\&.
383 \fISTRUC\fR \fIstrucname\fR and \fIENDSTRUC\fR, when used to bracket a number of \fIRESB\fR, \fIRESW\fR or similar instructions, define a data structure\&. In addition to defining the offsets of the structure members, the construct also defines a symbol for the size of the structure, which is simply the structure name with \fIsize\fR tacked on to the end\&.
384 .SH "FORMAT-SPECIFIC DIRECTIVES"
386 \fIORG\fR \fIaddress\fR is used by the \fIbin\fR flat\-form binary output format, and specifies the address at which the output code will eventually be loaded\&.
388 \fIGROUP\fR \fIgrpname\fR \fIseg1\fR \fIseg2\fR\&... is used by the obj (Microsoft 16\-bit) output format, and defines segment groups\&. This format also uses \fIUPPERCASE\fR, which directs that all segment, group and symbol names output to the object file should be in uppercase\&. Note that the actual assembly is still case sensitive\&.
390 \fILIBRARY\fR \fIlibname\fR is used by the \fIrdf\fR output format, and causes a dependency record to be written to the output file which indicates that the program requires a certain library in order to run\&.
391 .SH "MACRO PREPROCESSOR"
393 Single\-line macros are defined using the \fI%define\fR or \fI%idefine\fR commands, in a similar fashion to the C preprocessor\&. They can be overloaded with respect to number of parameters, although defining a macro with no parameters prevents the definition of any macro with the same name taking parameters, and vice versa\&. \fI%define\fR defines macros whose names match case\-sensitively, whereas \fI%idefine\fR defines case\-insensitive macros\&.
395 Multi\-line macros are defined using \fI%macro\fR and \fI%imacro\fR (the distinction is the same as that between \fI%define\fR and \fI%idefine\fR), whose syntax is as follows
397 .if n \{\
398 .RS 4
401 %macro name minprm[\-maxprm][+][\&.nolist] [defaults]
402         <some lines of macro expansion text>
403 %endmacro
405 .if n \{\
409 Again, these macros may be overloaded\&. The trailing plus sign indicates that any parameters after the last one get subsumed, with their separating commas, into the last parameter\&. The \fIdefaults\fR part can be used to specify defaults for unspecified macro parameters after \fIminparam\fR\&. \fI%endm\fR is a valid synonym for \fI%endmacro\fR\&.
411 To refer to the macro parameters within a macro expansion, you use \fI%1\fR, \fI%2\fR and so on\&. You can also enforce that a macro parameter should contain a condition code by using \fI%+1\fR, and you can invert the condition code by using \fI%\-1\fR\&. You can also define a label specific to a macro invocation by prefixing it with a double \(oq%\(cq sign\&.
413 Files can be included using the \fI%include\fR directive, which works like C\&.
415 The preprocessor has a \(oqcontext stack\(cq, which may be used by one macro to store information that a later one will retrieve\&. You can push a context on the stack using \fI%push\fR, remove one using \fI%pop\fR, and change the name of the top context (without disturbing any associated definitions) using \fI%repl\fR\&. Labels and \fI%define\fR macros specific to the top context may be defined by prefixing their names with %$, and things specific to the next context down with %$$, and so on\&.
417 Conditional assembly is done by means of \fI%ifdef\fR, \fI%ifndef\fR, \fI%else\fR and \fI%endif\fR as in C\&. (Except that \fI%ifdef\fR can accept several putative macro names, and will evaluate TRUE if any of them is defined\&.) In addition, the directives \fI%ifctx\fR and \fI%ifnctx\fR can be used to condition on the name of the top context on the context stack\&. The obvious set of \(oqelse\-if\(cq directives, \fI%elifdef\fR, \fI%elifndef\fR, \fI%elifctx\fR and \fI%elifnctx\fR are also supported\&.
418 .SH "BUGS"
420 Please report bugs through the bug tracker function at \m[blue]\fBhttp://nasm\&.us\fR\m[]\&.
421 .SH "SEE ALSO"
423 \fBas\fR(1), \fBld\fR(1)\&.