cpu.h revision 1.2
11.2Smatt/*	$NetBSD: cpu.h,v 1.2 2011/06/20 06:35:41 matt Exp $	*/
21.1Sgarbled
31.1Sgarbled/*
41.1Sgarbled * Copyright (C) 1995-1997 Wolfgang Solfrank.
51.1Sgarbled * Copyright (C) 1995-1997 TooLs GmbH.
61.1Sgarbled * All rights reserved.
71.1Sgarbled *
81.1Sgarbled * Redistribution and use in source and binary forms, with or without
91.1Sgarbled * modification, are permitted provided that the following conditions
101.1Sgarbled * are met:
111.1Sgarbled * 1. Redistributions of source code must retain the above copyright
121.1Sgarbled *    notice, this list of conditions and the following disclaimer.
131.1Sgarbled * 2. Redistributions in binary form must reproduce the above copyright
141.1Sgarbled *    notice, this list of conditions and the following disclaimer in the
151.1Sgarbled *    documentation and/or other materials provided with the distribution.
161.1Sgarbled * 3. All advertising materials mentioning features or use of this software
171.1Sgarbled *    must display the following acknowledgement:
181.1Sgarbled *	This product includes software developed by TooLs GmbH.
191.1Sgarbled * 4. The name of TooLs GmbH may not be used to endorse or promote products
201.1Sgarbled *    derived from this software without specific prior written permission.
211.1Sgarbled *
221.1Sgarbled * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
231.1Sgarbled * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
241.1Sgarbled * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
251.1Sgarbled * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
261.1Sgarbled * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
271.1Sgarbled * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
281.1Sgarbled * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
291.1Sgarbled * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
301.1Sgarbled * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
311.1Sgarbled * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
321.1Sgarbled */
331.2Smatt#ifndef	_RS6000_CPU_H_
341.2Smatt#define	_RS6000_CPU_H_
351.1Sgarbled
361.2Smatt#if defined(_KERNEL) && !defined(_MODULE)
371.1Sgarbled#define	CPU_MAXNUM	1
381.1Sgarbledextern char bootpath[];
391.1Sgarbled#endif
401.1Sgarbled
411.1Sgarbled#include <powerpc/cpu.h>
421.1Sgarbled
431.2Smatt#endif	/* _RS6000_CPU_H_ */
44