Forrest logo
back to context overview

nasm

List of commands for nasm:

  • nasm:tldr:02fc3 nasm: Add a directory (must be written with trailing slash) to the include file search path before assembling.
    $ nasm -i ${path-to-include_dir-} ${source-asm}
    try on your machine
    explain this command
  • nasm:tldr:038a1 nasm: Assemble `source.asm` into a binary file `source`, in the (default) raw binary format.
    $ nasm ${source-asm}
    try on your machine
    explain this command
  • nasm:tldr:1f761 nasm: List valid output formats (along with basic nasm help).
    $ nasm -hf
    try on your machine
    explain this command
  • nasm:tldr:47979 nasm: Assemble and generate an assembly listing file.
    $ nasm -l ${list_file} ${source-asm}
    try on your machine
    explain this command
  • nasm:tldr:9299b nasm: Assemble `source.asm` into a binary file `output_file`, in the specified format.
    $ nasm -f ${format} ${source-asm} -o ${output_file}
    try on your machine
    explain this command
back to context overview