$ nasm -f bin -o <output.bin|o> <input.s|asm>
Where -f
specifies the output format. Another option would be elf32
or
elf
.
$ nasm -f bin -o <output.bin|o> <input.s|asm>
Where -f
specifies the output format. Another option would be elf32
or
elf
.