Add a machine type field. It should hold a platform dependant type. On Atari it's the high word of the _MCH cookie (2=TT,3=Falcon,5=ARAnyM).

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26085 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol
2008-06-22 20:57:49 +00:00
parent fa83a2a121
commit 375be9fa40
@@ -18,7 +18,8 @@ typedef struct {
int cpu_type; // decimal: 68030, ... int cpu_type; // decimal: 68030, ...
int fpu_type; // decimal: 68030, ... int fpu_type; // decimal: 68030, ...
int mmu_type; // decimal: 68030, ... int mmu_type; // decimal: 68030, ...
int platform; int platform; // M68K_PLATFORM_*
int machine; // platform specific machine type
bool has_lpstop; //XXX: use bit flags bool has_lpstop; //XXX: use bit flags
// architecture specific // architecture specific
uint64 cpu_frequency; uint64 cpu_frequency;