xref: /haiku/src/system/boot/platform/efi/mmu.cpp (revision c0bdc8bef58917882da6e66d57015afed6f8bd74)
1 /*
2  * Copyright 2016 Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <boot/platform.h>
8 #include <boot/stage2.h>
9 
10 
11 extern "C" status_t
12 platform_allocate_region(void **_virtualAddress, size_t size, uint8 protection,
13 	bool exactAddress)
14 {
15 	panic("platform_allocate_region not implemented");
16 	return B_ERROR;
17 }
18 
19 
20 extern "C" status_t
21 platform_free_region(void *address, size_t size)
22 {
23 	panic("platform_free_region not implemented");
24 	return B_ERROR;
25 }
26