From 375be9fa40e1cd4b93061332f6e940ed1bac0e2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sun, 22 Jun 2008 20:57:49 +0000 Subject: [PATCH] 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 --- headers/private/kernel/arch/m68k/arch_kernel_args.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/headers/private/kernel/arch/m68k/arch_kernel_args.h b/headers/private/kernel/arch/m68k/arch_kernel_args.h index 51563cd0c4..dd1af17228 100644 --- a/headers/private/kernel/arch/m68k/arch_kernel_args.h +++ b/headers/private/kernel/arch/m68k/arch_kernel_args.h @@ -18,7 +18,8 @@ typedef struct { int cpu_type; // decimal: 68030, ... int fpu_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 // architecture specific uint64 cpu_frequency;