BSD 3 development
[unix-history] / usr / man / man1 / as.1
CommitLineData
7f9aa2b6
JR
1.TH AS 1 VAX-11
2.UC
3.SH NAME
4as \- assembler
5.SH SYNOPSIS
6.B as
7[
8.B \-d124
9] [
10.B \-L
11] [
12.B \-o
13objfile ] [ name ... ]
14.SH DESCRIPTION
15.I As
16assembles the named files, or the standard input if no file name is specified.
17The optional argument
18.B \-d
19may be used to specify the number of bytes to be assembled for offsets
20which involve forward or external references, which have sizes unspecified
21in the assembly language.
22The default is four bytes,
23i.e.,
24.B \-d4 \&.
25All undefined symbols in the assembly
26are treated as global.
27Normally all labels which begin with a `L' are discarded to save space in
28the resultant output file; the compilers generate such temporary labels.
29The
30.B \-L
31option causes these labels to not be discarded.
32.PP
33The output of the assembly is left on the file
34.I objfile;
35if that is omitted,
36.I a.out
37is used.
38.SH FILES
39.ta \w'/tmp/a[ab][a\-h]t\(**\ \ 'u
40/tmp/as\(** temporary
41.br
42/tmp/a[ab][a\-h]t\(** temporary
43.br
44a.out object
45.SH "SEE ALSO"
46ld(1),
47nm(1),
48adb(1),
49sdb(1),
50a.out(5)
51.br
52Auxiliary documentation
53.I Assembler Reference Manual.
54.SH AUTHORS
55John F. Resier
56.br
57Robert R. Henry
58.SH BUGS