[svn:parrot] r48591 - trunk/tools/dev
jkeenan at svn.parrot.org
jkeenan at svn.parrot.org
Sat Aug 21 21:10:30 UTC 2010
Author: jkeenan
Date: Sat Aug 21 21:10:29 2010
New Revision: 48591
URL: https://trac.parrot.org/parrot/changeset/48591
Log:
Add references to documentation.
Modified:
trunk/tools/dev/as2c.pl
Modified: trunk/tools/dev/as2c.pl
==============================================================================
--- trunk/tools/dev/as2c.pl Sat Aug 21 20:47:26 2010 (r48590)
+++ trunk/tools/dev/as2c.pl Sat Aug 21 21:10:29 2010 (r48591)
@@ -6,16 +6,16 @@
=head1 NAME
-as2c.pl - convert gas assembler listing to i386 code array
+as2c.pl - convert GNU Assembler listing to i386 code array
=head1 DESCRIPTION
-The plan behind of as2c.pl is to create compiler independent
-machine code for an architecture. Code in e.g. masm, gas, nasm syntax
-doesn't fit all compilers. Therefore as2c.pl translates gas syntax to a
+The plan behind of F<as2c.pl> is to create compiler independent
+machine code for an architecture. Code in, I<e.g.,> MASM, GAS, NASM syntax
+doesn't fit all compilers. Therefore F<as2c.pl> translates GAS syntax to a
bytestring, which is then used as the asm code.
-as2c.pl is used very rarely. Once the code is generated and
+F<as2c.pl> is used very rarely. Once the code is generated and
checked in, there's usually no need to change it later.
=cut
@@ -125,6 +125,14 @@
close $IN;
}
+=head1 REFERENCES
+
+GNU Assembler: (GAS) L<http://en.wikipedia.org/wiki/GNU_Assembler>
+
+Microsoft Macro Assembler (MASM): L<http://en.wikipedia.org/wiki/Microsoft_Macro_Assembler>
+
+Netwide Assembler (NASM) L<http://en.wikipedia.org/wiki/Netwide_Assembler>
+
# Local Variables:
# mode: cperl
# cperl-indent-level: 4
More information about the parrot-commits
mailing list