xref: /netbsd/usr.sbin/gspa/gspa/gspa.8 (revision bf9ec67e)
1.\" $NetBSD: gspa.8,v 1.1 2002/05/27 21:12:54 wiz Exp $
2.\"
3.\" Copyright (c) 2002 The NetBSD Foundation, Inc.
4.\" All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\"    notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\"    notice, this list of conditions and the following disclaimer in the
13.\"    documentation and/or other materials provided with the distribution.
14.\" 3. All advertising materials mentioning features or use of this software
15.\"    must display the following acknowledgement:
16.\"        This product includes software developed by the NetBSD
17.\"        Foundation, Inc. and its contributors.
18.\" 4. Neither the name of The NetBSD Foundation nor the names of its
19.\"    contributors may be used to endorse or promote products derived
20.\"    from this software without specific prior written permission.
21.\"
22.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
23.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
24.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
25.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
26.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32.\" POSSIBILITY OF SUCH DAMAGE.
33.\"
34.Dd May 27, 2002
35.Dt GSPA 8
36.Os
37.Sh NAME
38.Nm gspa
39.Nd assembler for the GSP chip
40.Sh SYNOPSIS
41.Nm
42.Op Fl c Ar c_array_name
43.Op Fl l Ar list_file
44.Op Fl o Ar hex_file
45.Op infile
46.Sh DESCRIPTION
47.Nm
48is an assembler for the TMS34010 and TMS34020 graphics processor
49chips.
50.Pp
51The supported options are:
52.Bl -tag -width xxxlistname -compact
53.It Fl c Ar c_array_name
54Create a pre-initialized C-structure
55.Ar c_array_name
56with the hex code of the assembler output.
57.It Fl l Ar list_file
58Create commented (with the input file) hex code of the assembler
59output in
60.Ar list_file .
61.It Fl o Ar hex_file
62Create the output in
63.Ar hex_file .
64If
65.Fl c
66is used, C code will be written to
67.Ar hex_file ,
68otherwise uncommented hex code of the assembler output will be
69written.
70.El
71.Pp
72If no
73.Fl o
74option is given, output will be written to stdout.
75.Pp
76If no
77.Ar infile
78is given, input will be read from stdin.
79.Sh HISTORY
80.Nm
81appeared in
82.Nx 1.1 .
83.Sh AUTHORS
84.Nm
85was written by
86.An Paul Mackerras .
87The
88.Fl c
89mode was added by Ignatios Souvatzis
90.Aq is@netbsd.org .
91This man page was written by Thomas Klausner
92.Aq wiz@netbsd.org .
93