Initial revision
[reactos.git] / reactos / ntoskrnl / mm / iospace.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: kernel/base/bug.c
5 * PURPOSE: Graceful system shutdown if a bug is detected
6 * PROGRAMMER: David Welch (welch@mcmail.com)
7 * UPDATE HISTORY:
8 * Created 22/05/98
9 */
10
11 /* INCLUDES *****************************************************************/
12
13 #include <internal/kernel.h>
14 #include <internal/linkage.h>
15 #include <ddk/ntddk.h>
16
17 #include <internal/debug.h>
18
19 /* FUNCTIONS *****************************************************************/
20
21 PVOID MmMapIoSpace(PHYSICAL_ADDRESS PhysicalAddress,
22 ULONG NumberOfBytes,
23 BOOLEAN CacheEnable)
24 {
25 UNIMPLEMENTED;
26 }
27
28 VOID MmUnmapIoSpace(PVOID BaseAddress, ULONG NumberOfBytes)
29 {
30 UNIMPLEMENTED;
31 }