FASM: Difference between revisions

From OSDev.wiki
Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content added Content deleted
(+links, Category)
mNo edit summary
Line 1: Line 1:
The flat assembler (FASM) is a fast and efficient self-assembling 80x86 assembler for DOS, Windows and Linux operating systems. Currently it supports all 8086-80486/Pentium instructions with MMX, SSE, SSE2, SSE3 and 3DNow! extensions and x86-64 (both AMD64 and EM64T) instructions, can produce output in binary, MZ, PE, COFF or ELF format. It includes the powerful but easy to use macroinstruction support and does multiple passes to optimize the instruction codes for size. The flat assembler is self-compilable and the full source code is included.
The flat assembler (FASM) is a fast and efficient self-assembling x86 assembler for DOS, Windows and *nix (BSD etc.) operating systems. Currently it supports all x86/x64 instructions with MMX, 3DNow!, SSE up to SSE4, AVX, AVX2 and XOP extensions, can produce output in binary, MZ, PE, COFF or ELF format. It includes a powerful but easy to use macro language and compiles in multiple passes to optimize the instruction codes for size. The flat assembler is self-compilable and the full source code is included.


==See Also==
==See Also==

===Articles===
===Articles===

*[[Assembly]]
*[[Assembly]]
*[[GAS]]
*[[GAS]]
*[[NASM]]
*[[NASM]]

===External Links===
===External Links===

*[http://www.flatassembler.net/ Official flat assembler website]
*[http://www.flatassembler.net/ Official flat assembler website]



Revision as of 13:13, 21 April 2013

The flat assembler (FASM) is a fast and efficient self-assembling x86 assembler for DOS, Windows and *nix (BSD etc.) operating systems. Currently it supports all x86/x64 instructions with MMX, 3DNow!, SSE up to SSE4, AVX, AVX2 and XOP extensions, can produce output in binary, MZ, PE, COFF or ELF format. It includes a powerful but easy to use macro language and compiles in multiple passes to optimize the instruction codes for size. The flat assembler is self-compilable and the full source code is included.

See Also

Articles

External Links