Fix build.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26171 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2008-06-29 21:08:12 +00:00
parent d0b2c3e1b8
commit ff41eb66a3
3 changed files with 6 additions and 3 deletions

View File

@ -5,6 +5,7 @@
#ifndef _KERNEL_M68K_ARCH_PLATFORM_H
#define _KERNEL_M68K_ARCH_PLATFORM_H
#include <OS.h>
#include <arch/platform.h>
struct real_time_data;

View File

@ -41,7 +41,7 @@ check_cpu_features()
const tos_cookie *c;
uint16 cpu_type, fpu_type, fpu_emul;
uint16 machine_type;
int fpu;
int fpu = 0;
c = tos_find_cookie('_CPU');
if (!c) {

View File

@ -22,8 +22,10 @@ static M68KPlatform *sM68KPlatform;
// constructor
M68KPlatform::M68KPlatform(m68k_platform_type platformType)
: fPlatformType(platformType)
M68KPlatform::M68KPlatform(platform_type platformType,
m68k_platform_type m68kPlatformType)
: fPlatformType(platformType),
fM68KPlatformType(m68kPlatformType)
{
}