use the locations specified in the bcm2708_boot header
[AROS.git] / rom / kernel / cpu_init.c
blob7e491dac0aa59635fecf4760dea72851c19647f0
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 */
8 /*
9 * This is dummy routine, it needs to be here until transition to
10 * unified CPUContext is complete. Without it exceptions on hosted
11 * will not work
14 #include <aros/symbolsets.h>
15 #include <exec/types.h>
17 #include "kernel_base.h"
19 static int cpu_Init(struct KernelBase *KernelBase)
21 KernelBase->kb_ContextSize = sizeof(struct AROSCPUContext);
23 return TRUE;
26 ADD2INITLIB(cpu_Init, 5);