bus.h revision 58762
177298Sobrien/*-
2218822Sdim * Copyright (c) KATO Takenori, 1999.
3218822Sdim *
477298Sobrien * All rights reserved.  Unpublished rights reserved under the copyright
577298Sobrien * laws of Japan.
6130561Sobrien *
777298Sobrien * Redistribution and use in source and binary forms, with or without
8130561Sobrien * modification, are permitted provided that the following conditions
9130561Sobrien * are met:
10130561Sobrien *
11130561Sobrien * 1. Redistributions of source code must retain the above copyright
1277298Sobrien *    notice, this list of conditions and the following disclaimer as
13130561Sobrien *    the first lines of this file unmodified.
14130561Sobrien * 2. Redistributions in binary form must reproduce the above copyright
15130561Sobrien *    notice, this list of conditions and the following disclaimer in the
16130561Sobrien *    documentation and/or other materials provided with the distribution.
1777298Sobrien * 3. The name of the author may not be used to endorse or promote products
18130561Sobrien *    derived from this software without specific prior written permission.
19130561Sobrien *
20218822Sdim * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
2177298Sobrien * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
2277298Sobrien * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2377298Sobrien * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2477298Sobrien * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2577298Sobrien * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2677298Sobrien * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27130561Sobrien * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28130561Sobrien * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2977298Sobrien * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3077298Sobrien *
3177298Sobrien * $FreeBSD: head/sys/i386/include/bus.h 58762 2000-03-29 03:15:22Z kato $
3277298Sobrien */
33130561Sobrien
34130561Sobrien#ifndef _I386_BUS_H_
35130561Sobrien#define _I386_BUS_H_
36130561Sobrien
3777298Sobrien#ifdef	PC98
38130561Sobrien/* NEC PC-98 */
3977298Sobrien#include <machine/bus_pc98.h>
4077298Sobrien#else
41130561Sobrien/* IBM-PC */
42130561Sobrien#include <machine/bus_at386.h>
4377298Sobrien#endif
4477298Sobrien
4577298Sobrien#endif /* _I386_BUS_H_ */
4677298Sobrien