1 /*---------------------------------------------------------------------------*
2   Project:  TwlSDK - include - twl
3   File:     rsvwram_begin.h
4 
5   Copyright 2007-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-17#$
14   $Rev: 8556 $
15   $Author: okubata_ryoma $
16  *---------------------------------------------------------------------------*/
17 //
18 // include this instead of using C99 pragma extensions for compatibility
19 //
20 #include <twl/section.h>
21 
22 #ifdef SDK_TWL
23 
24 #ifdef SDK_TWLHYB
25 
26 #include <twl/ltdwram_begin.h>
27 
28 #else // SDK_TWLHYB
29 
30 #if	defined(SDK_CW) || defined(SDK_RX) || defined(__MWERKS__)
31 #pragma section RSVWRAM begin
32 #elif	defined(SDK_ADS)
33 TO BE   DEFINED
34 #elif	defined(SDK_GCC)
35 TO BE   DEFINED
36 #endif
37 
38 #endif // SDK_TWLHYB
39 
40 #endif // SDK_TWL
41