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// Possible gMachine OpenFirmware platforms
13#define MACHINE_UNKNOWN	0x0000
14
15#define MACHINE_CHRP	0x0001
16#define MACHINE_MAC		0x0002
17
18#define MACHINE_PEGASOS	0x0100
19#define MACHINE_QEMU	0x0200
20#define MACHINE_SPARC	0x0300
21
22
23extern uint32 gMachine;
24	// stores the machine type
25
26#endif	/* MACHINE_H */
27