1*a182bd6eSX512 /* 2*a182bd6eSX512 * Copyright 2004-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3*a182bd6eSX512 * Distributed under the terms of the MIT License. 4*a182bd6eSX512 */ 5*a182bd6eSX512 #ifndef CPU_H 6*a182bd6eSX512 #define CPU_H 7*a182bd6eSX512 8*a182bd6eSX512 9*a182bd6eSX512 #include <SupportDefs.h> 10*a182bd6eSX512 11*a182bd6eSX512 12*a182bd6eSX512 #ifdef __cplusplus 13*a182bd6eSX512 extern "C" { 14*a182bd6eSX512 #endif 15*a182bd6eSX512 16*a182bd6eSX512 extern void cpu_init(void); 17*a182bd6eSX512 18*a182bd6eSX512 #ifdef __cplusplus 19*a182bd6eSX512 } 20*a182bd6eSX512 #endif 21*a182bd6eSX512 22*a182bd6eSX512 #endif /* CPU_H */ 23