1  /*---------------------------------------------------------------------------*
2   Project:  TwlSDK - libraries - stubs - isd
3   File:     stubs_isd.c
4 
5   Copyright 2007-2009 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:: 2009-06-04#$
14   $Rev: 10698 $
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 void    ISDPrintSetBlockingMode(int);
31 int     ISDPrintGetBlockingMode(void);
32 
33 /*---------------------------------------------------------------------------*
34       Dummy Function for IS NITRO Debugger Console Functions
35  *---------------------------------------------------------------------------*/
ISDPrintf(const char *,...)36 SDK_WEAK_SYMBOL void ISDPrintf(const char *, ...)
37 {
38 }
39 
ISDPrint(const char *)40 SDK_WEAK_SYMBOL void ISDPrint(const char *)
41 {
42 }
43 
_ISDbgLib_Initialize(void)44 SDK_WEAK_SYMBOL void _ISDbgLib_Initialize(void)
45 {
46 }
47 
_ISDbgLib_AllocateEmualtor(void)48 SDK_WEAK_SYMBOL void _ISDbgLib_AllocateEmualtor(void)
49 {
50 }
51 
_ISDbgLib_FreeEmulator(void)52 SDK_WEAK_SYMBOL void _ISDbgLib_FreeEmulator(void)
53 {
54 }
55 
_ISDbgLib_RegistOverlayInfo(void)56 SDK_WEAK_SYMBOL void _ISDbgLib_RegistOverlayInfo(void)
57 {
58 }
59 
_ISDbgLib_UnregistOverlayInfo(void)60 SDK_WEAK_SYMBOL void _ISDbgLib_UnregistOverlayInfo(void)
61 {
62 }
63 
ISDPrintSetBlockingMode(int)64 SDK_WEAK_SYMBOL void ISDPrintSetBlockingMode(int)
65 {
66 }
67 
ISDPrintGetBlockingMode(void)68 SDK_WEAK_SYMBOL int ISDPrintGetBlockingMode(void)
69 {
70     return 0;
71 }
72