xref: /netbsd-src/sys/arch/landisk/include/param.h (revision 1fd097bf157cce123eb2413f2d91732bb8e70bdc)
1*1fd097bfSuwe /*	$NetBSD: param.h,v 1.1 2006/09/01 21:26:18 uwe Exp $	*/
2*1fd097bfSuwe 
3*1fd097bfSuwe /*-
4*1fd097bfSuwe  * Copyright (c) 1990 The Regents of the University of California.
5*1fd097bfSuwe  * All rights reserved.
6*1fd097bfSuwe  *
7*1fd097bfSuwe  * This code is derived from software contributed to Berkeley by
8*1fd097bfSuwe  * William Jolitz.
9*1fd097bfSuwe  *
10*1fd097bfSuwe  * Redistribution and use in source and binary forms, with or without
11*1fd097bfSuwe  * modification, are permitted provided that the following conditions
12*1fd097bfSuwe  * are met:
13*1fd097bfSuwe  * 1. Redistributions of source code must retain the above copyright
14*1fd097bfSuwe  *    notice, this list of conditions and the following disclaimer.
15*1fd097bfSuwe  * 2. Redistributions in binary form must reproduce the above copyright
16*1fd097bfSuwe  *    notice, this list of conditions and the following disclaimer in the
17*1fd097bfSuwe  *    documentation and/or other materials provided with the distribution.
18*1fd097bfSuwe  * 3. Neither the name of the University nor the names of its contributors
19*1fd097bfSuwe  *    may be used to endorse or promote products derived from this software
20*1fd097bfSuwe  *    without specific prior written permission.
21*1fd097bfSuwe  *
22*1fd097bfSuwe  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23*1fd097bfSuwe  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24*1fd097bfSuwe  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25*1fd097bfSuwe  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26*1fd097bfSuwe  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27*1fd097bfSuwe  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28*1fd097bfSuwe  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29*1fd097bfSuwe  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30*1fd097bfSuwe  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31*1fd097bfSuwe  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32*1fd097bfSuwe  * SUCH DAMAGE.
33*1fd097bfSuwe  *
34*1fd097bfSuwe  *	@(#)param.h	5.8 (Berkeley) 6/28/91
35*1fd097bfSuwe  */
36*1fd097bfSuwe 
37*1fd097bfSuwe /*
38*1fd097bfSuwe  * Machine dependent constants for landisk
39*1fd097bfSuwe  */
40*1fd097bfSuwe 
41*1fd097bfSuwe #ifndef _LANDISK_PARAM_H_
42*1fd097bfSuwe #define _LANDISK_PARAM_H_
43*1fd097bfSuwe 
44*1fd097bfSuwe #include <sh3/param.h>
45*1fd097bfSuwe 
46*1fd097bfSuwe #define	_MACHINE_ARCH	sh3el
47*1fd097bfSuwe #define	MACHINE_ARCH	"sh3el"
48*1fd097bfSuwe 
49*1fd097bfSuwe #define	_MACHINE	landisk
50*1fd097bfSuwe #define	MACHINE		"landisk"
51*1fd097bfSuwe 
52*1fd097bfSuwe #define	MID_MACHINE	MID_SH3
53*1fd097bfSuwe 
54*1fd097bfSuwe #endif /* _LANDISK_PARAM_H_ */
55