logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

nasm.1 (14712B)


  1. '\" t
  2. .\" Title: nasm
  3. .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
  4. .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
  5. .\" Date: 12/21/2022
  6. .\" Manual: The Netwide Assembler Project
  7. .\" Source: NASM
  8. .\" Language: English
  9. .\"
  10. .TH "NASM" "1" "12/21/2022" "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\&.
  88. .RE
  89. .PP
  90. \fB\-g\fR\fIformat\fR
  91. .RS 4
  92. Equivalent to
  93. \fB\-g \-F\fR\fI format\fR\&.
  94. .RE
  95. .PP
  96. \fB\-h\fR
  97. .RS 4
  98. Causes
  99. \fBnasm\fR
  100. to exit immediately, after giving a summary of its invocation options\&.
  101. .RE
  102. .PP
  103. \fB\-hf\fR
  104. .RS 4
  105. Same as
  106. \fB\-h\fR
  107. , but also lists all valid output formats\&.
  108. .RE
  109. .PP
  110. \fB\-I\fR|\fB\-i\fR \fIdirectory\fR
  111. .RS 4
  112. 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\&.
  113. .RE
  114. .PP
  115. \fB\-l\fR \fIlistfile\fR
  116. .RS 4
  117. 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\&.
  118. .RE
  119. .PP
  120. \fB\-M\fR
  121. .RS 4
  122. Causes
  123. \fBnasm\fR
  124. to output Makefile\-style dependencies to stdout; normal output is suppressed\&.
  125. .RE
  126. .PP
  127. \fB\-MG\fR \fIfile\fR
  128. .RS 4
  129. Same as
  130. \fB\-M\fR
  131. but assumes that missing Makefile dependencies are generated and added to dependency list without a prefix\&.
  132. .RE
  133. .PP
  134. \fB\-MF\fR \fIfile\fR
  135. .RS 4
  136. Output Makefile\-style dependencies to the specified file\&.
  137. .RE
  138. .PP
  139. \fB\-MD\fR \fIfile\fR
  140. .RS 4
  141. Same as a combination of
  142. \fB\-M\fR
  143. and
  144. \fB\-MF\fR
  145. options\&.
  146. .RE
  147. .PP
  148. \fB\-MT\fR \fIfile\fR
  149. .RS 4
  150. Override the default name of the dependency target dependency target name\&. This is normally the same as the output filename, specified by the
  151. \fB\-o\fR
  152. option\&.
  153. .RE
  154. .PP
  155. \fB\-MQ\fR \fIfile\fR
  156. .RS 4
  157. The same as
  158. \fB\-MT\fR
  159. 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\&.
  160. .RE
  161. .PP
  162. \fB\-MP\fR
  163. .RS 4
  164. Emit phony target\&.
  165. .RE
  166. .PP
  167. \fB\-O\fR \fInumber\fR
  168. .RS 4
  169. Optimize branch offsets\&.
  170. .sp
  171. .RS 4
  172. .ie n \{\
  173. \h'-04'\(bu\h'+03'\c
  174. .\}
  175. .el \{\
  176. .sp -1
  177. .IP \(bu 2.3
  178. .\}
  179. \fB\-O0\fR: No optimization
  180. .RE
  181. .sp
  182. .RS 4
  183. .ie n \{\
  184. \h'-04'\(bu\h'+03'\c
  185. .\}
  186. .el \{\
  187. .sp -1
  188. .IP \(bu 2.3
  189. .\}
  190. \fB\-O1\fR: Minimal optimization
  191. .RE
  192. .sp
  193. .RS 4
  194. .ie n \{\
  195. \h'-04'\(bu\h'+03'\c
  196. .\}
  197. .el \{\
  198. .sp -1
  199. .IP \(bu 2.3
  200. .\}
  201. \fB\-Ox\fR: Multipass optimization (default)
  202. .RE
  203. .RE
  204. .PP
  205. \fB\-o\fR \fIoutfile\fR
  206. .RS 4
  207. Specifies a precise name for the output file, overriding
  208. \fBnasm\fR\*(Aqs default means of determining it\&.
  209. .RE
  210. .PP
  211. \fB\-P\fR|\fB\-p\fR \fIfile\fR
  212. .RS 4
  213. Specifies a file to be pre\-included, before the main source file starts to be processed\&.
  214. .RE
  215. .PP
  216. \fB\-s\fR
  217. .RS 4
  218. Causes
  219. \fBnasm\fR
  220. to send its error messages and/or help text to stdout instead of stderr\&.
  221. .RE
  222. .PP
  223. \fB\-t\fR
  224. .RS 4
  225. Causes
  226. \fBnasm\fR
  227. to assemble in SciTech TASM compatible mode\&.
  228. .RE
  229. .PP
  230. \fB\-U\fR|\fB\-u\fR \fImacro\fR
  231. .RS 4
  232. Undefines a single\-line macro\&.
  233. .RE
  234. .PP
  235. \fB\-v\fR
  236. .RS 4
  237. Causes
  238. \fBnasm\fR
  239. to exit immediately, after displaying its version number\&.
  240. .RE
  241. .PP
  242. *\-W[no\-]foo\*(Aq
  243. .RS 4
  244. Causes
  245. \fBnasm\fR
  246. to enable or disable certain classes of warning messages, in gcc\-like style, for example
  247. \fB\-Wlabel\-orphan\fR
  248. or
  249. \fB\-Wno\-orphan\-labels\fR\&.
  250. .RE
  251. .PP
  252. \fB\-w\fR\fI[+\-]foo\fR
  253. .RS 4
  254. Causes
  255. \fBnasm\fR
  256. to enable or disable certain classes of warning messages, for example
  257. \fB\-w+label\-orphan\fR
  258. or
  259. \fB\-w\-macro\-params\fR\&.
  260. .RE
  261. .PP
  262. \fB\-X\fR \fIformat\fR
  263. .RS 4
  264. Specifies error reporting format (gnu or vc)\&.
  265. .RE
  266. .PP
  267. \fB\-y\fR
  268. .RS 4
  269. Causes
  270. \fBnasm\fR
  271. to list supported debug formats\&.
  272. .RE
  273. .PP
  274. \fB\-Z\fR \fIfilename\fR
  275. .RS 4
  276. Causes
  277. \fBnasm\fR
  278. to redirect error messages to
  279. \fIfilename\fR\&. This option exists to support operating systems on which stderr is not easily redirected\&.
  280. .RE
  281. .PP
  282. \-\-prefix, \-\-postfix
  283. .RS 4
  284. Prepend or append (respectively) the given argument to all global or extern variables\&.
  285. .RE
  286. .SH "SYNTAX"
  287. .sp
  288. 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\&.
  289. .sp
  290. \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\&.
  291. .sp
  292. \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
  293. .sp
  294. .if n \{\
  295. .RS 4
  296. .\}
  297. .nf
  298. fadd st0,st1
  299. fadd st1,st0
  300. .fi
  301. .if n \{\
  302. .RE
  303. .\}
  304. .sp
  305. or one could use the alternative single\-operand forms
  306. .sp
  307. .if n \{\
  308. .RS 4
  309. .\}
  310. .nf
  311. fadd st1
  312. fadd to st1
  313. .fi
  314. .if n \{\
  315. .RE
  316. .\}
  317. .sp
  318. \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\&.
  319. .sp
  320. \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:
  321. .sp
  322. .if n \{\
  323. .RS 4
  324. .\}
  325. .nf
  326. message: times 3 db \*(Aqabc\*(Aq
  327. times 64\-$+message db 0
  328. .fi
  329. .if n \{\
  330. .RE
  331. .\}
  332. .sp
  333. which defines the string abcabcabc, followed by the right number of zero bytes to make the total length up to 64 bytes\&.
  334. .sp
  335. \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:
  336. .sp
  337. .if n \{\
  338. .RS 4
  339. .\}
  340. .nf
  341. mov ax,wordvar
  342. .fi
  343. .if n \{\
  344. .RE
  345. .\}
  346. .sp
  347. loads AX with the address of the variable wordvar, whereas
  348. .sp
  349. .if n \{\
  350. .RS 4
  351. .\}
  352. .nf
  353. mov ax,[wordvar]
  354. mov ax,[wordvar+1]
  355. mov ax,[es:wordvar+bx]
  356. .fi
  357. .if n \{\
  358. .RE
  359. .\}
  360. .sp
  361. all refer to the \fIcontents\fR of memory locations\&. The syntaxes
  362. .sp
  363. .if n \{\
  364. .RS 4
  365. .\}
  366. .nf
  367. mov ax,es:wordvar[bx]
  368. es mov ax,wordvar[1]
  369. .fi
  370. .if n \{\
  371. .RE
  372. .\}
  373. .sp
  374. 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\&.
  375. .sp
  376. \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\&.
  377. .sp
  378. 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\&.
  379. .SH "DIRECTIVES"
  380. .sp
  381. \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\&.)
  382. .sp
  383. \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\&.
  384. .sp
  385. \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\&.
  386. .sp
  387. \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\&.
  388. .sp
  389. \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\&.
  390. .SH "FORMAT\-SPECIFIC DIRECTIVES"
  391. .sp
  392. \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\&.
  393. .sp
  394. \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\&.
  395. .sp
  396. \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\&.
  397. .SH "MACRO PREPROCESSOR"
  398. .sp
  399. 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\&.
  400. .sp
  401. 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
  402. .sp
  403. .if n \{\
  404. .RS 4
  405. .\}
  406. .nf
  407. %macro name minprm[\-maxprm][+][\&.nolist] [defaults]
  408. <some lines of macro expansion text>
  409. %endmacro
  410. .fi
  411. .if n \{\
  412. .RE
  413. .\}
  414. .sp
  415. 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\&.
  416. .sp
  417. 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\&.
  418. .sp
  419. Files can be included using the \fI%include\fR directive, which works like C\&.
  420. .sp
  421. 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\&.
  422. .sp
  423. 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\&.
  424. .SH "BUGS"
  425. .sp
  426. Please report bugs through the bug tracker function at \m[blue]\fBhttp://nasm\&.us\fR\m[]\&.
  427. .SH "SEE ALSO"
  428. .sp
  429. \fBas\fR(1), \fBld\fR(1)\&.