xref: /haiku/src/tests/system/boot/loader/platform_kernel_args.h (revision b6f76ebe7153b94820cf35f8db4facc158841abb)
1 /*
2 ** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 ** Distributed under the terms of the MIT License.
4 */
5 #ifndef PLATFORM_KERNEL_ARGS_H
6 #define PLATFORM_KERNEL_ARGS_H
7 
8 
9 #define SMP_MAX_CPUS 4
10 
11 #define MAX_PHYSICAL_MEMORY_RANGE 4
12 #define MAX_PHYSICAL_ALLOCATED_RANGE 4
13 #define MAX_VIRTUAL_ALLOCATED_RANGE 4
14 
15 
16 struct platform_kernel_args {
17 	/* they are just empty! */
18 };
19 
20 #endif	/* PLATFORM_KERNEL_ARGS_H */
21