]>
git.saurik.com Git - apple/xnu.git/blob - pexpert/pexpert/i386/protos.h
cdb4d4583200bf65820ef87ada4d1105e8cb7a30
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
22 #ifndef _PEXPERT_I386_PROTOS_H
23 #define _PEXPERT_I386_PROTOS_H
25 //------------------------------------------------------------------------
26 // x86 IN/OUT I/O inline functions.
31 // OUT: outb, outw, outl
34 typedef unsigned short i386_ioport_t
;
37 static __inline__ unsigned u \
38 in##s(i386_ioport_t port) \
49 static __inline__ void \
50 out##s(i386_ioport_t port, unsigned u data) \
55 : "d" (port), "a" (data)); \
66 //------------------------------------------------------------------------
67 // from bsd/dev/ppc/busses.h which clashes with mach/device/device_types.h
71 // typedef struct ipc_port *ipc_port_t;
73 extern void cninit(void);
75 #endif /* _PEXPERT_I386_PROTOS_H */