]>
git.saurik.com Git - apple/xnu.git/blob - pexpert/pexpert/i386/protos.h
09857c7db9306050c3069aca773958f07053f977
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 extern void cninit(void);
67 extern void bcopy(void * from
, void * to
, int size
);
68 extern int sprintf(char * str
, const char * format
, ...);
70 //------------------------------------------------------------------------
71 // from osfmk/i386/AT386/video_console.c
73 extern boolean_t
vc_progress_initialize( void * desc
,
74 const unsigned char * data
,
75 const unsigned char * clut
);
77 extern void vc_display_icon( void * desc
, const unsigned char * data
);
79 #endif /* _PEXPERT_I386_PROTOS_H */