1 /*---------------------------------------------------------------------------* 2 Project: TwlSDK - include - twl 3 File: rsvwram_end.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 21 #ifdef SDK_TWL 22 23 #ifdef SDK_TWLHYB 24 25 #include <twl/ltdwram_end.h> 26 27 #else // SDK_TWLHYB 28 29 #if defined(SDK_CW) || defined(SDK_RX) || defined(__MWERKS__) 30 #pragma section RSVWRAM end 31 #elif defined(SDK_ADS) 32 TO BE DEFINED 33 #elif defined(SDK_GCC) 34 TO BE DEFINED 35 #endif 36 37 #endif // SDK_TWLHYB 38 39 #endif // SDK_TWL 40