1  /*---------------------------------------------------------------------------*
2   Project:  TwlSDK - libraries - stubs - isd
3   File:     stubs_isd.c
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-18#$
14   $Rev: 8573 $
15   $Author: okubata_ryoma $
16  *---------------------------------------------------------------------------*/
17 
18 #include <nitro.h>
19 
20 /*---------------------------------------------------------------------------*
21       Function prototype for IS NITRO Debugger Console Functions
22  *---------------------------------------------------------------------------*/
23 void    ISDPrintf(const char *, ...);
24 void    ISDPrint(const char *);
25 void    _ISDbgLib_Initialize(void);
26 void    _ISDbgLib_AllocateEmualtor(void);
27 void    _ISDbgLib_FreeEmulator(void);
28 void    _ISDbgLib_RegistOverlayInfo(void);
29 void    _ISDbgLib_UnregistOverlayInfo(void);
30 
31 /*---------------------------------------------------------------------------*
32       Dummy Function for IS NITRO Debugger Console Functions
33  *---------------------------------------------------------------------------*/
ISDPrintf(const char *,...)34 SDK_WEAK_SYMBOL void ISDPrintf(const char *, ...)
35 {
36 }
37 
ISDPrint(const char *)38 SDK_WEAK_SYMBOL void ISDPrint(const char *)
39 {
40 }
41 
_ISDbgLib_Initialize(void)42 SDK_WEAK_SYMBOL void _ISDbgLib_Initialize(void)
43 {
44 }
45 
_ISDbgLib_AllocateEmualtor(void)46 SDK_WEAK_SYMBOL void _ISDbgLib_AllocateEmualtor(void)
47 {
48 }
49 
_ISDbgLib_FreeEmulator(void)50 SDK_WEAK_SYMBOL void _ISDbgLib_FreeEmulator(void)
51 {
52 }
53 
_ISDbgLib_RegistOverlayInfo(void)54 SDK_WEAK_SYMBOL void _ISDbgLib_RegistOverlayInfo(void)
55 {
56 }
57 
_ISDbgLib_UnregistOverlayInfo(void)58 SDK_WEAK_SYMBOL void _ISDbgLib_UnregistOverlayInfo(void)
59 {
60 }
61