]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. | |
7 | * | |
8 | * This file contains Original Code and/or Modifications of Original Code | |
9 | * as defined in and that are subject to the Apple Public Source License | |
10 | * Version 2.0 (the 'License'). You may not use this file except in | |
11 | * compliance with the License. Please obtain a copy of the License at | |
12 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
13 | * file. | |
14 | * | |
15 | * The Original Code and all software distributed under the License are | |
16 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
17 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
18 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
19 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
20 | * Please see the License for the specific language governing rights and | |
21 | * limitations under the License. | |
22 | * | |
23 | * @APPLE_LICENSE_HEADER_END@ | |
24 | */ | |
25 | /* | |
26 | * @OSF_COPYRIGHT@ | |
27 | */ | |
28 | ||
29 | #ifndef _AT386_MISC_PROTOS_H_ | |
30 | #define _AT386_MISC_PROTOS_H_ | |
31 | ||
32 | #include <types.h> /* for dev_t */ | |
33 | #include <mach/machine/vm_types.h> /* for vm_offset_t */ | |
34 | ||
35 | /* | |
36 | * i386/AT386/model_dep.c | |
37 | */ | |
38 | ||
39 | extern void i386_init(void); | |
40 | extern void machine_init(void); | |
41 | extern void machine_startup(void); | |
42 | ||
43 | /* | |
44 | * i386/AT386/kd.c | |
45 | */ | |
46 | ||
47 | extern void cninit(void); | |
48 | extern void kdreboot(void); | |
49 | ||
50 | /* | |
51 | * i386/locore.s | |
52 | */ | |
53 | ||
54 | extern void kdb_kintr(void); | |
55 | extern void kgdb_kintr(void); | |
56 | ||
57 | /* | |
58 | * i386/db_interface.c | |
59 | */ | |
60 | ||
61 | extern void kdb_console(void); | |
62 | ||
63 | /* | |
64 | * i386/bcopy.s | |
65 | */ | |
66 | ||
67 | extern void bcopy16( | |
68 | char * from, | |
69 | char * to, | |
70 | int count); | |
71 | ||
72 | typedef void (*i386_intr_t)(void); | |
73 | #endif | |
74 |