xref: /haiku/src/system/boot/platform/openfirmware/machine.h (revision 16d5c24e533eb14b7b8a99ee9f3ec9ba66335b1e)
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 MACHINE_H
6 #define MACHINE_H
7 
8 
9 #include <SupportDefs.h>
10 
11 
12 #define MACHINE_UNKNOWN	0x0000
13 
14 #define MACHINE_CHRP	0x0001
15 #define MACHINE_MAC		0x0002
16 
17 #define MACHINE_PEGASOS	0x0100
18 
19 
20 extern uint32 gMachine;
21 	// stores the machine type
22 
23 #endif	/* MACHINE_H */
24