AS86: Difference between revisions

From OSDev.wiki
Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content added Content deleted
(Created page with "AS86 is a lesser-known GNU assembler, which uses the Intel syntax rather than the AT&T syntax more common amongst Unix-based assemblers. Despite being less well known, it is v...")
 
No edit summary
Line 1: Line 1:
AS86 is a lesser-known GNU assembler, which uses the Intel syntax rather than the AT&T syntax more common amongst Unix-based assemblers. Despite being less well known, it is very similar to the more common assemblers in terms of its functionality. It differs in that there is little requirement for so-called "red tape" at the start of a source file, although there is limited support for macros (notably jmp $ fails).
AS86 is a lesser-known GNU assembler, which uses the Intel syntax rather than the AT&T syntax more common amongst Unix-based assemblers. Despite being less well known, it is very similar to the more common assemblers in terms of its functionality. It differs in that there is little requirement for so-called "red tape" at the start of a source file, although there is limited support for macros (most notably jmp $ fails).

==See Also==
===Articles===
* [[Gas]]
* [[AS86]]
*[[Assembly]]
*[[Tool Comparison]]
*[[MASM]]
*[[Wikipedia:GNU Assembler|GNU Assembler]] - Wikipedia
*[[Wikibooks:X86 Assembly/GAS Syntax|GAS Syntax]] - Wikibook

===External Links===
*[http://sourceware.org/binutils/docs-2.17/as/index.html GNU as official manual]


[[Category:Assemblers]]
[[Category:Assemblers]]

Revision as of 14:58, 27 May 2014

AS86 is a lesser-known GNU assembler, which uses the Intel syntax rather than the AT&T syntax more common amongst Unix-based assemblers. Despite being less well known, it is very similar to the more common assemblers in terms of its functionality. It differs in that there is little requirement for so-called "red tape" at the start of a source file, although there is limited support for macros (most notably jmp $ fails).

See Also

Articles

External Links