xref: /haiku/src/system/boot/platform/openfirmware/machine.h (revision 4f00613311d0bd6b70fa82ce19931c41f071ea4e)
1 /*
2 ** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 ** Distributed under the terms of the OpenBeOS 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