2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
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
);
18 ADD2INITLIB(cpu_Init
, 5);