BSD 3 development
authorJohn Reiser <jfr@ucbvax.Berkeley.EDU>
Tue, 27 Nov 1979 03:21:19 +0000 (19:21 -0800)
committerJohn Reiser <jfr@ucbvax.Berkeley.EDU>
Tue, 27 Nov 1979 03:21:19 +0000 (19:21 -0800)
Work on file usr/man/man1/as.1

Synthesized-from: 3bsd

usr/man/man1/as.1 [new file with mode: 0644]

diff --git a/usr/man/man1/as.1 b/usr/man/man1/as.1
new file mode 100644 (file)
index 0000000..32332b4
--- /dev/null
@@ -0,0 +1,58 @@
+.TH AS 1 VAX-11
+.UC
+.SH NAME
+as \- assembler
+.SH SYNOPSIS
+.B as
+[
+.B \-d124
+] [
+.B \-L
+] [
+.B \-o
+objfile ] [ name ... ]
+.SH DESCRIPTION
+.I As
+assembles the named files, or the standard input if no file name is specified.
+The optional argument
+.B \-d
+may be used to specify the number of bytes to be assembled for offsets
+which involve forward or external references, which have sizes unspecified
+in the assembly language.
+The default is four bytes,
+i.e.,
+.B \-d4 \&.
+All undefined symbols in the assembly
+are treated as global.
+Normally all labels which begin with a `L' are discarded to save space in
+the resultant output file; the compilers generate such temporary labels.
+The
+.B \-L
+option causes these labels to not be discarded.
+.PP
+The output of the assembly is left on the file
+.I objfile;
+if that is omitted,
+.I a.out
+is used.
+.SH FILES
+.ta \w'/tmp/a[ab][a\-h]t\(**\ \ 'u
+/tmp/as\(**    temporary
+.br
+/tmp/a[ab][a\-h]t\(**  temporary
+.br
+a.out          object
+.SH "SEE ALSO"
+ld(1),
+nm(1),
+adb(1),
+sdb(1),
+a.out(5)
+.br
+Auxiliary documentation
+.I Assembler Reference Manual.
+.SH AUTHORS
+John F. Resier
+.br
+Robert R. Henry
+.SH BUGS