param.h revision 1.1
11.1Sscw/*	$NetBSD: param.h,v 1.1 2002/02/27 21:02:18 scw Exp $	*/
21.1Sscw
31.1Sscw/*-
41.1Sscw * Copyright (C) 1995, 1996 Wolfgang Solfrank.
51.1Sscw * Copyright (C) 1995, 1996 TooLs GmbH.
61.1Sscw * All rights reserved.
71.1Sscw *
81.1Sscw * Redistribution and use in source and binary forms, with or without
91.1Sscw * modification, are permitted provided that the following conditions
101.1Sscw * are met:
111.1Sscw * 1. Redistributions of source code must retain the above copyright
121.1Sscw *    notice, this list of conditions and the following disclaimer.
131.1Sscw * 2. Redistributions in binary form must reproduce the above copyright
141.1Sscw *    notice, this list of conditions and the following disclaimer in the
151.1Sscw *    documentation and/or other materials provided with the distribution.
161.1Sscw * 3. All advertising materials mentioning features or use of this software
171.1Sscw *    must display the following acknowledgement:
181.1Sscw *	This product includes software developed by TooLs GmbH.
191.1Sscw * 4. The name of TooLs GmbH may not be used to endorse or promote products
201.1Sscw *    derived from this software without specific prior written permission.
211.1Sscw *
221.1Sscw * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
231.1Sscw * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
241.1Sscw * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
251.1Sscw * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
261.1Sscw * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
271.1Sscw * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
281.1Sscw * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
291.1Sscw * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
301.1Sscw * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
311.1Sscw * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
321.1Sscw */
331.1Sscw
341.1Sscw#ifdef	_KERNEL
351.1Sscw#ifndef	_LOCORE
361.1Sscw#include <machine/cpu.h>
371.1Sscw#endif	/* _LOCORE */
381.1Sscw#endif
391.1Sscw
401.1Sscw/*
411.1Sscw * Machine dependent constants for PowerPC (32-bit only currently)
421.1Sscw */
431.1Sscw#define	MACHINE		"mvmeppc"
441.1Sscw
451.1Sscw#define	KERNBASE	0x4000
461.1Sscw
471.1Sscw#include <powerpc/param.h>
481.1Sscw
49