1*95e1ffb1Schristos /* $NetBSD: param.h,v 1.11 2005/12/11 12:17:13 christos Exp $ */ 265363da2Sitojun 365363da2Sitojun /*- 465363da2Sitojun * Copyright (c) 1990 The Regents of the University of California. 565363da2Sitojun * All rights reserved. 665363da2Sitojun * 765363da2Sitojun * This code is derived from software contributed to Berkeley by 865363da2Sitojun * William Jolitz. 965363da2Sitojun * 1065363da2Sitojun * Redistribution and use in source and binary forms, with or without 1165363da2Sitojun * modification, are permitted provided that the following conditions 1265363da2Sitojun * are met: 1365363da2Sitojun * 1. Redistributions of source code must retain the above copyright 1465363da2Sitojun * notice, this list of conditions and the following disclaimer. 1565363da2Sitojun * 2. Redistributions in binary form must reproduce the above copyright 1665363da2Sitojun * notice, this list of conditions and the following disclaimer in the 1765363da2Sitojun * documentation and/or other materials provided with the distribution. 18aad01611Sagc * 3. Neither the name of the University nor the names of its contributors 1965363da2Sitojun * may be used to endorse or promote products derived from this software 2065363da2Sitojun * without specific prior written permission. 2165363da2Sitojun * 2265363da2Sitojun * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 2365363da2Sitojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 2465363da2Sitojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2565363da2Sitojun * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2665363da2Sitojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2765363da2Sitojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2865363da2Sitojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2965363da2Sitojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 3065363da2Sitojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 3165363da2Sitojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 3265363da2Sitojun * SUCH DAMAGE. 3365363da2Sitojun * 3465363da2Sitojun * @(#)param.h 5.8 (Berkeley) 6/28/91 3565363da2Sitojun */ 3665363da2Sitojun 3765363da2Sitojun /* 38f9201a16Such * Machine dependent constants for evbsh3 3965363da2Sitojun */ 4065363da2Sitojun 4165363da2Sitojun #ifndef _EVBSH3_PARAM_H_ 4265363da2Sitojun #define _EVBSH3_PARAM_H_ 4365363da2Sitojun 44f9201a16Such #include <sh3/param.h> 4565363da2Sitojun 461e7e3274Sitojun /* XXX relying upon gcc symbol here... */ 471e7e3274Sitojun #ifdef __LITTLE_ENDIAN__ 481e7e3274Sitojun #define _MACHINE_ARCH sh3el 491e7e3274Sitojun #define MACHINE_ARCH "sh3el" 501e7e3274Sitojun #else 511e7e3274Sitojun #define _MACHINE_ARCH sh3eb 521e7e3274Sitojun #define MACHINE_ARCH "sh3eb" 531e7e3274Sitojun #endif 5410e1d309Sitojun 5565363da2Sitojun #define _MACHINE evbsh3 5665363da2Sitojun #define MACHINE "evbsh3" 5765363da2Sitojun 5865363da2Sitojun #define MID_MACHINE MID_SH3 5965363da2Sitojun 6065363da2Sitojun #endif /* _EVBSH3_PARAM_H_ */ 61