Minor fixes to comments.
[AROS.git] / rom / kernel / cpu_init.c
blob19acbe28aed2f2ceddd3bda621805ecc0cce9d79
1 /*
2 * This is dummy routine, it needs to be here until transition to
3 * unified CPUContext is complete. Without it exceptions on hosted
4 * will not work
5 */
7 #include <aros/symbolsets.h>
8 #include <exec/types.h>
10 #include "kernel_base.h"
12 static int cpu_Init(struct KernelBase *KernelBase)
14 KernelBase->kb_ContextSize = sizeof(struct AROSCPUContext);
16 return TRUE;
19 ADD2INITLIB(cpu_Init, 5);