1 /*---------------------------------------------------------------------------* 2 Project: rsodemo 3 File: sub.c 4 5 Copyright 2006 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 @version $Id: sub.c,v 1.4 2006/09/11 06:35:29 srd_komatu Exp $ 14 15 $NoKeywords: $ 16 *---------------------------------------------------------------------------*/ 17 18 #include <revolution.h> 19 20 #include <revolution/rso.h> 21 #include <revolution/RSOLink.h> 22 23 #define DLL_EXPORT extern 24 #define DLL_SYMBOL(s) (*s) 25 26 #include "d.h" 27 28 #undef DLL_EXPORT 29 #undef DLL_SYMBOL 30 31 // 32 extern void sub(void); 33 34 // sub(void)35void sub(void) 36 { 37 OSReport("\n-- sub start --\n"); 38 FuncD_1(2); 39 FuncD_2(4,5); 40 OSReport("\n-- sub end --\n"); 41 } 42 43