ab8d2925c44db907e8479588f996246bffdc5355
[reactos.git] / reactos / hal / halx86 / generic / legacy / bus / sysbus.c
1 /*
2 * PROJECT: ReactOS HAL
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: hal/halx86/generic/bus/sysbus.c
5 * PURPOSE:
6 * PROGRAMMERS: Stefan Ginsberg (stefan.ginsberg@reactos.org)
7 */
8
9 /* INCLUDES *******************************************************************/
10
11 #include <hal.h>
12 #define NDEBUG
13 #include <debug.h>
14
15 /* GLOBALS ********************************************************************/
16
17 /* PRIVATE FUNCTIONS **********************************************************/
18
19 BOOLEAN
20 NTAPI
21 HalpTranslateSystemBusAddress(IN PBUS_HANDLER BusHandler,
22 IN PBUS_HANDLER RootHandler,
23 IN PHYSICAL_ADDRESS BusAddress,
24 IN OUT PULONG AddressSpace,
25 OUT PPHYSICAL_ADDRESS TranslatedAddress)
26 {
27 DPRINT1("SYSTEM Translate\n");
28 while (TRUE);
29 return FALSE;
30 }
31
32 ULONG
33 NTAPI
34 HalpGetSystemInterruptVector(IN PBUS_HANDLER BusHandler,
35 IN PBUS_HANDLER RootHandler,
36 IN ULONG BusInterruptLevel,
37 IN ULONG BusInterruptVector,
38 OUT PKIRQL Irql,
39 OUT PKAFFINITY Affinity)
40 {
41 /* Get the root vector */
42 DPRINT1("SYSTEM GetVector\n");
43 while (TRUE);
44 return 0;
45 }
46
47 /* EOF */