1 /*---------------------------------------------------------------------------* 2 Project: TwlSDK - RTC - include 3 File: rtc.h 4 5 Copyright 2003-2008 Nintendo. All rights reserved. 6 7 These coded instructions, statements, and computer programs contain 8 proprietary information of Nintendo of America Inc. and/or Nintendo 9 Company Ltd., and are protected by Federal copyright law. They may 10 not be disclosed to third parties or copied or duplicated in any form, 11 in whole or in part, without the prior written consent of Nintendo. 12 13 $Date:: 2008-09-18#$ 14 $Rev: 8573 $ 15 $Author: okubata_ryoma $ 16 *---------------------------------------------------------------------------*/ 17 #ifndef NITRO_RTC_H_ 18 #define NITRO_RTC_H_ 19 20 #ifdef __cplusplus 21 extern "C" { 22 #endif 23 24 /*===========================================================================*/ 25 26 #include <nitro/rtc/common/type.h> 27 #include <nitro/rtc/common/fifo.h> 28 29 #ifdef SDK_ARM7 30 31 #include <nitro/rtc/ARM7/control.h> 32 #include <nitro/rtc/ARM7/instruction.h> 33 #include <nitro/rtc/ARM7/gpio.h> 34 35 #else // SDK_ARM9 36 37 #include <nitro/rtc/ARM9/api.h> 38 #include <nitro/rtc/ARM9/convert.h> 39 #include <nitro/rtc/ARM9/swclock.h> 40 41 #endif 42 43 /*===========================================================================*/ 44 45 #ifdef __cplusplus 46 } /* extern "C" */ 47 #endif 48 49 #endif /* NITRO_RTC_H_ */ 50 51 /*---------------------------------------------------------------------------* 52 End of file 53 *---------------------------------------------------------------------------*/ 54