Copyright clean-up (part 1):
[AROS.git] / arch / x86_64-all / kernel / cpu_init.c
blobc4cbe79a9b684793150bc9765501a43633ae52ca
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/symbolsets.h>
7 #include <exec/types.h>
9 #include "kernel_base.h"
11 static int cpu_Init(struct KernelBase *KernelBase)
13 /* All x86-64 processors have SSE */
14 KernelBase->kb_ContextSize = AROS_ROUNDUP2(sizeof(struct AROSCPUContext), 16) + sizeof(struct FPXContext);
15 return TRUE;
18 ADD2INITLIB(cpu_Init, 5);