mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 15:36:04 +00:00
[HAL]
- Flatten the directory structure - use static libraries in cmake builds as well to save build time svn path=/trunk/; revision=53529
This commit is contained in:
parent
fec2ae66a2
commit
d9dd611750
29 changed files with 141 additions and 130 deletions
|
@ -23,48 +23,54 @@ list(APPEND HAL_GENERIC_SOURCE
|
||||||
if(ARCH MATCHES i386)
|
if(ARCH MATCHES i386)
|
||||||
list(APPEND HAL_GENERIC_SOURCE
|
list(APPEND HAL_GENERIC_SOURCE
|
||||||
generic/bios.c
|
generic/bios.c
|
||||||
generic/halinit.c
|
|
||||||
generic/timer.c
|
generic/timer.c
|
||||||
generic/i386/portio.c
|
generic/portio.c
|
||||||
generic/i386/systimer.S
|
generic/systimer.S
|
||||||
generic/i386/trap.S)
|
generic/trap.S)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
list(APPEND HAL_GENERIC_PCAT_SOURCE
|
add_library(lib_hal_generic ${HAL_GENERIC_SOURCE})
|
||||||
generic/legacy/bus/bushndlr.c
|
add_pch(lib_hal_generic include/hal.h)
|
||||||
generic/legacy/bus/cmosbus.c
|
|
||||||
generic/legacy/bus/isabus.c
|
|
||||||
generic/legacy/bus/pcibus.c
|
|
||||||
generic/legacy/bus/pcidata.c
|
|
||||||
generic/legacy/bus/sysbus.c
|
|
||||||
generic/legacy/bussupp.c
|
|
||||||
generic/legacy/halpnpdd.c
|
|
||||||
generic/legacy/halpcat.c)
|
|
||||||
|
|
||||||
list(APPEND HAL_GENERIC_ACPI_SOURCE
|
list(APPEND HAL_LEGACY_SOURCE
|
||||||
generic/acpi/halacpi.c
|
legacy/bus/bushndlr.c
|
||||||
generic/acpi/halpnpdd.c
|
legacy/bus/cmosbus.c
|
||||||
generic/acpi/busemul.c
|
legacy/bus/isabus.c
|
||||||
generic/legacy/bus/pcibus.c)
|
legacy/bus/pcibus.c
|
||||||
|
legacy/bus/pcidata.c
|
||||||
|
legacy/bus/sysbus.c
|
||||||
|
legacy/bussupp.c
|
||||||
|
legacy/halpnpdd.c
|
||||||
|
legacy/halpcat.c)
|
||||||
|
|
||||||
|
add_library(lib_hal_legacy ${HAL_LEGACY_SOURCE})
|
||||||
|
add_pch(lib_hal_legacy include/hal.h)
|
||||||
|
target_link_libraries(lib_hal_legacy lib_hal_generic)
|
||||||
|
|
||||||
|
list(APPEND HAL_ACPI_SOURCE
|
||||||
|
acpi/halacpi.c
|
||||||
|
acpi/halpnpdd.c
|
||||||
|
acpi/busemul.c
|
||||||
|
legacy/bus/pcibus.c)
|
||||||
|
|
||||||
|
add_library(lib_hal_acpi ${HAL_ACPI_SOURCE})
|
||||||
|
add_pch(lib_hal_acpi include/hal.h)
|
||||||
|
target_link_libraries(lib_hal_acpi lib_hal_generic)
|
||||||
|
|
||||||
if(ARCH MATCHES i386)
|
if(ARCH MATCHES i386)
|
||||||
list(APPEND HAL_GENERIC_ACPI_SOURCE
|
list(APPEND HAL_UP_SOURCE
|
||||||
generic/halinit.c)
|
|
||||||
|
|
||||||
list(APPEND HAL_GENERIC_UP_SOURCE
|
|
||||||
generic/spinlock.c
|
|
||||||
up/pic.c
|
up/pic.c
|
||||||
up/processor.c)
|
up/processor.c)
|
||||||
|
|
||||||
list(APPEND MINI_HAL_SOURCE
|
list(APPEND MINI_HAL_SOURCE
|
||||||
generic/i386/portio.c
|
generic/portio.c
|
||||||
generic/i386/systimer.S
|
generic/systimer.S
|
||||||
generic/legacy/bus/bushndlr.c
|
legacy/bus/bushndlr.c
|
||||||
generic/legacy/bus/cmosbus.c
|
legacy/bus/cmosbus.c
|
||||||
generic/legacy/bus/isabus.c
|
legacy/bus/isabus.c
|
||||||
generic/legacy/bus/pcibus.c
|
legacy/bus/pcibus.c
|
||||||
generic/legacy/bus/sysbus.c
|
legacy/bus/sysbus.c
|
||||||
generic/legacy/bussupp.c
|
legacy/bussupp.c
|
||||||
generic/beep.c
|
generic/beep.c
|
||||||
generic/bios.c
|
generic/bios.c
|
||||||
generic/cmos.c
|
generic/cmos.c
|
||||||
|
@ -84,42 +90,38 @@ if(ARCH MATCHES i386)
|
||||||
|
|
||||||
spec2def(hal.dll ../hal.spec)
|
spec2def(hal.dll ../hal.spec)
|
||||||
|
|
||||||
list(APPEND HAL_SOURCE
|
# hal
|
||||||
${HAL_GENERIC_SOURCE}
|
add_library(hal SHARED
|
||||||
${HAL_GENERIC_PCAT_SOURCE}
|
${HAL_UP_SOURCE}
|
||||||
${HAL_GENERIC_UP_SOURCE}
|
|
||||||
up/halinit_up.c
|
up/halinit_up.c
|
||||||
up/halup.rc
|
up/halup.rc
|
||||||
|
generic/spinlock.c
|
||||||
|
generic/halinit.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/hal.def)
|
${CMAKE_CURRENT_BINARY_DIR}/hal.def)
|
||||||
|
target_link_libraries(hal lib_hal_generic lib_hal_legacy libcntpr)
|
||||||
# hal
|
add_importlibs(hal ntoskrnl)
|
||||||
add_library(hal SHARED ${HAL_SOURCE})
|
|
||||||
add_pch(hal include/hal.h)
|
add_pch(hal include/hal.h)
|
||||||
add_dependencies(hal psdk bugcodes)
|
add_dependencies(hal psdk bugcodes)
|
||||||
|
|
||||||
set_entrypoint(hal HalInitSystem 8)
|
set_entrypoint(hal HalInitSystem 8)
|
||||||
set_subsystem(hal native)
|
set_subsystem(hal native)
|
||||||
set_image_base(hal 0x00010000)
|
set_image_base(hal 0x00010000)
|
||||||
add_importlibs(hal ntoskrnl)
|
|
||||||
target_link_libraries(hal libcntpr)
|
|
||||||
|
|
||||||
add_cd_file(TARGET hal DESTINATION reactos/system32 NO_CAB FOR all)
|
add_cd_file(TARGET hal DESTINATION reactos/system32 NO_CAB FOR all)
|
||||||
|
|
||||||
# hal acpi
|
# hal acpi
|
||||||
spec2def(halacpi.dll ../hal.spec halacpi)
|
spec2def(halacpi.dll ../hal.spec halacpi)
|
||||||
add_library(halacpi SHARED
|
add_library(halacpi SHARED
|
||||||
${HAL_GENERIC_SOURCE}
|
${HAL_UP_SOURCE}
|
||||||
${HAL_GENERIC_ACPI_SOURCE}
|
|
||||||
${HAL_GENERIC_UP_SOURCE}
|
|
||||||
up/halinit_up.c
|
up/halinit_up.c
|
||||||
up/halup.rc
|
up/halup.rc
|
||||||
|
generic/spinlock.c
|
||||||
|
generic/halinit.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/halacpi.def)
|
${CMAKE_CURRENT_BINARY_DIR}/halacpi.def)
|
||||||
|
target_link_libraries(halacpi lib_hal_generic lib_hal_acpi libcntpr)
|
||||||
|
add_importlibs(halacpi ntoskrnl)
|
||||||
add_dependencies(halacpi psdk bugcodes)
|
add_dependencies(halacpi psdk bugcodes)
|
||||||
set_entrypoint(halacpi HalInitSystem@8)
|
set_entrypoint(halacpi HalInitSystem@8)
|
||||||
set_subsystem(halacpi native)
|
set_subsystem(halacpi native)
|
||||||
set_image_base(halacpi 0x00010000)
|
set_image_base(halacpi 0x00010000)
|
||||||
add_importlibs(halacpi ntoskrnl)
|
|
||||||
target_link_libraries(halacpi libcntpr)
|
|
||||||
set_property(TARGET halacpi PROPERTY COMPILE_DEFINITIONS CONFIG_ACPI)
|
set_property(TARGET halacpi PROPERTY COMPILE_DEFINITIONS CONFIG_ACPI)
|
||||||
add_cd_file(TARGET halacpi DESTINATION reactos/system32 NO_CAB FOR all)
|
add_cd_file(TARGET halacpi DESTINATION reactos/system32 NO_CAB FOR all)
|
||||||
|
|
||||||
|
@ -134,11 +136,10 @@ elseif(ARCH MATCHES amd64)
|
||||||
|
|
||||||
list(APPEND HAL_SOURCE
|
list(APPEND HAL_SOURCE
|
||||||
${HAL_GENERIC_SOURCE}
|
${HAL_GENERIC_SOURCE}
|
||||||
${HAL_GENERIC_PCAT_SOURCE}
|
${HAL_ACPI_SOURCE}
|
||||||
${HAL_GENERIC_UP_SOURCE}
|
${HAL_UP_SOURCE}
|
||||||
up/halinit_up.c
|
|
||||||
up/halup.rc
|
|
||||||
generic/spinlock.c
|
generic/spinlock.c
|
||||||
|
generic/halinit.c
|
||||||
amd64/x86bios.c
|
amd64/x86bios.c
|
||||||
amd64/halinit.c
|
amd64/halinit.c
|
||||||
amd64/stubs.c
|
amd64/stubs.c
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* LICENSE: GPL - See COPYING in the top level directory
|
* LICENSE: GPL - See COPYING in the top level directory
|
||||||
* FILE: hal/halx86/amd64/halinit.c
|
* FILE: hal/halx86/amd64/halinit.c
|
||||||
* PURPOSE: HAL Entrypoint and Initialization
|
* PURPOSE: HAL Entrypoint and Initialization
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
@ -20,14 +20,30 @@ BOOLEAN HalpPciLockSettings;
|
||||||
|
|
||||||
/* FUNCTIONS *****************************************************************/
|
/* FUNCTIONS *****************************************************************/
|
||||||
|
|
||||||
/*
|
VOID
|
||||||
* @implemented
|
HalpInitPhase0(IN PLOADER_PARAMETER_BLOCK LoaderBlock)
|
||||||
*/
|
{
|
||||||
BOOLEAN
|
|
||||||
NTAPI
|
}
|
||||||
HalInitSystem(IN ULONG BootPhase,
|
|
||||||
IN PLOADER_PARAMETER_BLOCK LoaderBlock)
|
VOID
|
||||||
|
HalpInitPhase1(VOID)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
VOID
|
||||||
|
INIT_FUNCTION
|
||||||
|
HalpInitializeClock(VOID)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
VOID
|
||||||
|
HalpCalibrateStallExecution()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
VOID
|
||||||
|
HalpInitializePICs(IN BOOLEAN EnableInterrupts)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
|
||||||
return FALSE;
|
|
||||||
}
|
}
|
||||||
|
|
0
reactos/hal/halx86/generic/acpi/.gitignore
vendored
0
reactos/hal/halx86/generic/acpi/.gitignore
vendored
|
@ -53,7 +53,7 @@ HalInitSystem(IN ULONG BootPhase,
|
||||||
PKPRCB Prcb = KeGetCurrentPrcb();
|
PKPRCB Prcb = KeGetCurrentPrcb();
|
||||||
|
|
||||||
/* Check the boot phase */
|
/* Check the boot phase */
|
||||||
if (!BootPhase)
|
if (BootPhase == 0)
|
||||||
{
|
{
|
||||||
/* Phase 0... save bus type */
|
/* Phase 0... save bus type */
|
||||||
HalpBusType = LoaderBlock->u.I386.MachineType & 0xFF;
|
HalpBusType = LoaderBlock->u.I386.MachineType & 0xFF;
|
||||||
|
@ -159,27 +159,6 @@ HalInitSystem(IN ULONG BootPhase,
|
||||||
/* Initialize bus handlers */
|
/* Initialize bus handlers */
|
||||||
HalpInitBusHandlers();
|
HalpInitBusHandlers();
|
||||||
|
|
||||||
#ifndef _MINIHAL_
|
|
||||||
/* Enable IRQ 0 */
|
|
||||||
HalpEnableInterruptHandler(IDT_DEVICE,
|
|
||||||
0,
|
|
||||||
PRIMARY_VECTOR_BASE,
|
|
||||||
CLOCK2_LEVEL,
|
|
||||||
HalpClockInterrupt,
|
|
||||||
Latched);
|
|
||||||
|
|
||||||
/* Enable IRQ 8 */
|
|
||||||
HalpEnableInterruptHandler(IDT_DEVICE,
|
|
||||||
0,
|
|
||||||
PRIMARY_VECTOR_BASE + 8,
|
|
||||||
PROFILE_LEVEL,
|
|
||||||
HalpProfileInterrupt,
|
|
||||||
Latched);
|
|
||||||
|
|
||||||
/* Initialize DMA. NT does this in Phase 0 */
|
|
||||||
HalpInitDma();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Do some HAL-specific initialization */
|
/* Do some HAL-specific initialization */
|
||||||
HalpInitPhase1();
|
HalpInitPhase1();
|
||||||
}
|
}
|
||||||
|
|
0
reactos/hal/halx86/generic/legacy/.gitignore
vendored
0
reactos/hal/halx86/generic/legacy/.gitignore
vendored
|
@ -21,11 +21,9 @@
|
||||||
<file>usage.c</file>
|
<file>usage.c</file>
|
||||||
<if property="ARCH" value="i386">
|
<if property="ARCH" value="i386">
|
||||||
<file>bios.c</file>
|
<file>bios.c</file>
|
||||||
<directory name="i386">
|
<file>portio.c</file>
|
||||||
<file>portio.c</file>
|
<file>systimer.S</file>
|
||||||
<file>systimer.S</file>
|
<file>trap.S</file>
|
||||||
<file>trap.S</file>
|
|
||||||
</directory>
|
|
||||||
</if>
|
</if>
|
||||||
</directory>
|
</directory>
|
||||||
<directory name="include">
|
<directory name="include">
|
||||||
|
|
|
@ -7,17 +7,17 @@
|
||||||
<define name="_NTHALDLL_" />
|
<define name="_NTHALDLL_" />
|
||||||
<define name="_NTHAL_" />
|
<define name="_NTHAL_" />
|
||||||
<define name="CONFIG_ACPI" />
|
<define name="CONFIG_ACPI" />
|
||||||
|
<directory name="acpi">
|
||||||
|
<file>halacpi.c</file>
|
||||||
|
<file>halpnpdd.c</file>
|
||||||
|
<file>busemul.c</file>
|
||||||
|
</directory>
|
||||||
|
<directory name="legacy">
|
||||||
|
<directory name="bus">
|
||||||
|
<file>pcibus.c</file>
|
||||||
|
</directory>
|
||||||
|
</directory>
|
||||||
<directory name="generic">
|
<directory name="generic">
|
||||||
<directory name="acpi">
|
|
||||||
<file>halacpi.c</file>
|
|
||||||
<file>halpnpdd.c</file>
|
|
||||||
<file>busemul.c</file>
|
|
||||||
</directory>
|
|
||||||
<directory name="legacy">
|
|
||||||
<directory name="bus">
|
|
||||||
<file>pcibus.c</file>
|
|
||||||
</directory>
|
|
||||||
</directory>
|
|
||||||
<if property="ARCH" value="i386">
|
<if property="ARCH" value="i386">
|
||||||
<file>halinit.c</file>
|
<file>halinit.c</file>
|
||||||
</if>
|
</if>
|
||||||
|
|
|
@ -6,20 +6,20 @@
|
||||||
<include base="ntoskrnl">include</include>
|
<include base="ntoskrnl">include</include>
|
||||||
<define name="_NTHALDLL_" />
|
<define name="_NTHALDLL_" />
|
||||||
<define name="_NTHAL_" />
|
<define name="_NTHAL_" />
|
||||||
<directory name="generic">
|
<directory name="legacy">
|
||||||
<directory name="legacy">
|
<directory name="bus">
|
||||||
<directory name="bus">
|
<file>bushndlr.c</file>
|
||||||
<file>bushndlr.c</file>
|
<file>cmosbus.c</file>
|
||||||
<file>cmosbus.c</file>
|
<file>isabus.c</file>
|
||||||
<file>isabus.c</file>
|
<file>pcibus.c</file>
|
||||||
<file>pcibus.c</file>
|
<file>pcidata.c</file>
|
||||||
<file>pcidata.c</file>
|
<file>sysbus.c</file>
|
||||||
<file>sysbus.c</file>
|
|
||||||
</directory>
|
|
||||||
<file>bussupp.c</file>
|
|
||||||
<file>halpcat.c</file>
|
|
||||||
<file>halpnpdd.c</file>
|
|
||||||
</directory>
|
</directory>
|
||||||
|
<file>bussupp.c</file>
|
||||||
|
<file>halpcat.c</file>
|
||||||
|
<file>halpnpdd.c</file>
|
||||||
|
</directory>
|
||||||
|
<directory name="generic">
|
||||||
<if property="ARCH" value="i386">
|
<if property="ARCH" value="i386">
|
||||||
<file>halinit.c</file>
|
<file>halinit.c</file>
|
||||||
</if>
|
</if>
|
||||||
|
|
|
@ -9,16 +9,6 @@
|
||||||
<define name="_BLDR_" />
|
<define name="_BLDR_" />
|
||||||
<define name="_MINIHAL_" />
|
<define name="_MINIHAL_" />
|
||||||
<directory name="generic">
|
<directory name="generic">
|
||||||
<directory name="legacy">
|
|
||||||
<directory name="bus">
|
|
||||||
<file>bushndlr.c</file>
|
|
||||||
<file>cmosbus.c</file>
|
|
||||||
<file>isabus.c</file>
|
|
||||||
<file>pcibus.c</file>
|
|
||||||
<file>sysbus.c</file>
|
|
||||||
</directory>
|
|
||||||
<file>bussupp.c</file>
|
|
||||||
</directory>
|
|
||||||
<file>beep.c</file>
|
<file>beep.c</file>
|
||||||
<file>bios.c</file>
|
<file>bios.c</file>
|
||||||
<file>cmos.c</file>
|
<file>cmos.c</file>
|
||||||
|
@ -32,10 +22,18 @@
|
||||||
<file>sysinfo.c</file>
|
<file>sysinfo.c</file>
|
||||||
<file>timer.c</file>
|
<file>timer.c</file>
|
||||||
<file>usage.c</file>
|
<file>usage.c</file>
|
||||||
<directory name="i386">
|
<file>portio.c</file>
|
||||||
<file>portio.c</file>
|
<file>systimer.S</file>
|
||||||
<file>systimer.S</file>
|
</directory>
|
||||||
|
<directory name="legacy">
|
||||||
|
<directory name="bus">
|
||||||
|
<file>bushndlr.c</file>
|
||||||
|
<file>cmosbus.c</file>
|
||||||
|
<file>isabus.c</file>
|
||||||
|
<file>pcibus.c</file>
|
||||||
|
<file>sysbus.c</file>
|
||||||
</directory>
|
</directory>
|
||||||
|
<file>bussupp.c</file>
|
||||||
</directory>
|
</directory>
|
||||||
<directory name="up">
|
<directory name="up">
|
||||||
<file>halinit_up.c</file>
|
<file>halinit_up.c</file>
|
||||||
|
|
|
@ -750,7 +750,7 @@ HalpDispatchPnp(IN PDEVICE_OBJECT DeviceObject,
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case IRP_MN_QUERY_CAPABILITIES:
|
case IRP_MN_QUERY_CAPABILITIES:
|
||||||
|
|
||||||
/* Call the worker */
|
/* Call the worker */
|
||||||
DPRINT("Querying the capabilities for the PDO\n");
|
DPRINT("Querying the capabilities for the PDO\n");
|
||||||
Status = HalpQueryCapabilities(DeviceObject,
|
Status = HalpQueryCapabilities(DeviceObject,
|
||||||
|
@ -773,7 +773,7 @@ HalpDispatchPnp(IN PDEVICE_OBJECT DeviceObject,
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case IRP_MN_QUERY_ID:
|
case IRP_MN_QUERY_ID:
|
||||||
|
|
||||||
/* Call the worker */
|
/* Call the worker */
|
||||||
DPRINT("Query the ID for the PDO\n");
|
DPRINT("Query the ID for the PDO\n");
|
||||||
Status = HalpQueryIdPdo(DeviceObject,
|
Status = HalpQueryIdPdo(DeviceObject,
|
||||||
|
@ -782,7 +782,7 @@ HalpDispatchPnp(IN PDEVICE_OBJECT DeviceObject,
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
||||||
/* We don't handle anything else, so inherit the old state */
|
/* We don't handle anything else, so inherit the old state */
|
||||||
DPRINT("Illegal IRP: %lx\n", Minor);
|
DPRINT("Illegal IRP: %lx\n", Minor);
|
||||||
Status = Irp->IoStatus.Status;
|
Status = Irp->IoStatus.Status;
|
||||||
|
@ -807,7 +807,7 @@ HalpDispatchWmi(IN PDEVICE_OBJECT DeviceObject,
|
||||||
{
|
{
|
||||||
DPRINT1("HAL: PnP Driver WMI!\n");
|
DPRINT1("HAL: PnP Driver WMI!\n");
|
||||||
while (TRUE);
|
while (TRUE);
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
@ -816,7 +816,7 @@ HalpDispatchPower(IN PDEVICE_OBJECT DeviceObject,
|
||||||
IN PIRP Irp)
|
IN PIRP Irp)
|
||||||
{
|
{
|
||||||
DPRINT1("HAL: PnP Driver Power!\n");
|
DPRINT1("HAL: PnP Driver Power!\n");
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
|
@ -26,7 +26,26 @@ HalpInitPhase0(IN PLOADER_PARAMETER_BLOCK LoaderBlock)
|
||||||
VOID
|
VOID
|
||||||
HalpInitPhase1(VOID)
|
HalpInitPhase1(VOID)
|
||||||
{
|
{
|
||||||
|
#ifndef _MINIHAL_
|
||||||
|
/* Enable IRQ 0 */
|
||||||
|
HalpEnableInterruptHandler(IDT_DEVICE,
|
||||||
|
0,
|
||||||
|
PRIMARY_VECTOR_BASE,
|
||||||
|
CLOCK2_LEVEL,
|
||||||
|
HalpClockInterrupt,
|
||||||
|
Latched);
|
||||||
|
|
||||||
|
/* Enable IRQ 8 */
|
||||||
|
HalpEnableInterruptHandler(IDT_DEVICE,
|
||||||
|
0,
|
||||||
|
PRIMARY_VECTOR_BASE + 8,
|
||||||
|
PROFILE_LEVEL,
|
||||||
|
HalpProfileInterrupt,
|
||||||
|
Latched);
|
||||||
|
|
||||||
|
/* Initialize DMA. NT does this in Phase 0 */
|
||||||
|
HalpInitDma();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue