1/*
2 * Copyright 2005, Ingo Weinhold <bonefish@cs.tu-berlin.de>.
3 * All rights reserved. Distributed under the terms of the MIT License.
4 */
5
6#include <boot/platform/cfe/platform_arch.h>
7
8#include <stdio.h>
9
10#include <KernelExport.h>
11
12#include <boot/kernel_args.h>
13#include <boot/stage2.h>
14#include <kernel.h>
15//#include <platform/cfe/devices.h>
16#include <boot/platform/cfe/cfe.h>
17
18#define TRACE_CPU
19#ifdef TRACE_CPU
20#	define TRACE(x) dprintf x
21#else
22#	define TRACE(x) ;
23#endif
24
25
26status_t
27boot_arch_cpu_init(void)
28{
29#warning PPC:TODO
30	return B_ERROR;
31}
32
33