1 /*---------------------------------------------------------------------------*
2   Project:  TwlSDK - OS
3   File:     os_profile.c
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 #include <nitro/os.h>
18 
19 
20 #ifndef OS_PROFILE_AVAILABLE
21 
__PROFILE_ENTRY(void)22 SDK_WEAK_SYMBOL asm void __PROFILE_ENTRY( void )
23 {
24     bx   lr
25 }
__PROFILE_EXIT(void)26 SDK_WEAK_SYMBOL asm void __PROFILE_EXIT( void )
27 {
28     bx   lr
29 }
30 #endif // ifdef OS_PROFILE_AVAILABLE
31