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