xref: /netbsd/sys/arch/netwinder/include/param.h (revision cd98cbf7)
1*cd98cbf7Sthorpej /*	$NetBSD: param.h,v 1.3 2002/02/12 06:58:20 thorpej Exp $	*/
256260f7dSmatt 
356260f7dSmatt /*
456260f7dSmatt  * Copyright (c) 1994,1995 Mark Brinicombe.
556260f7dSmatt  * All rights reserved.
656260f7dSmatt  *
756260f7dSmatt  * Redistribution and use in source and binary forms, with or without
856260f7dSmatt  * modification, are permitted provided that the following conditions
956260f7dSmatt  * are met:
1056260f7dSmatt  * 1. Redistributions of source code must retain the above copyright
1156260f7dSmatt  *    notice, this list of conditions and the following disclaimer.
1256260f7dSmatt  * 2. Redistributions in binary form must reproduce the above copyright
1356260f7dSmatt  *    notice, this list of conditions and the following disclaimer in the
1456260f7dSmatt  *    documentation and/or other materials provided with the distribution.
1556260f7dSmatt  * 3. All advertising materials mentioning features or use of this software
1656260f7dSmatt  *    must display the following acknowledgement:
1756260f7dSmatt  *	This product includes software developed by the RiscBSD team.
1856260f7dSmatt  * 4. The name "RiscBSD" nor the name of the author may be used to
1956260f7dSmatt  *    endorse or promote products derived from this software without specific
2056260f7dSmatt  *    prior written permission.
2156260f7dSmatt  *
2256260f7dSmatt  * THIS SOFTWARE IS PROVIDED BY RISCBSD ``AS IS'' AND ANY EXPRESS OR IMPLIED
2356260f7dSmatt  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
2456260f7dSmatt  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2556260f7dSmatt  * IN NO EVENT SHALL RISCBSD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
2656260f7dSmatt  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2756260f7dSmatt  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
2856260f7dSmatt  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2956260f7dSmatt  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3056260f7dSmatt  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3156260f7dSmatt  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3256260f7dSmatt  * SUCH DAMAGE.
3356260f7dSmatt  */
3456260f7dSmatt 
3556260f7dSmatt #ifndef	_NETWINDER_PARAM_H_
3656260f7dSmatt #define	_NETWINDER_PARAM_H_
3756260f7dSmatt 
3856260f7dSmatt /*
3956260f7dSmatt  * Machine dependent constants for ARM6+ processors
4056260f7dSmatt  */
4156260f7dSmatt 
4256260f7dSmatt #define	_MACHINE	netwinder
4356260f7dSmatt #define	MACHINE		"netwinder"
4456260f7dSmatt 
4556260f7dSmatt #include <arm/arm32/param.h>
4656260f7dSmatt 
4756260f7dSmatt #endif	/* _NETWINDER_PARAM_H_ */
48