1 /*---------------------------------------------------------------------------* 2 3 Copyright (C) Nintendo. All rights reserved. 4 5 These coded instructions, statements, and computer programs contain 6 proprietary information of Nintendo of America Inc. and/or Nintendo 7 Company Ltd., and are protected by Federal copyright law. They may 8 not be disclosed to third parties or copied or duplicated in any form, 9 in whole or in part, without the prior written consent of Nintendo. 10 11 *---------------------------------------------------------------------------*/ 12 #ifndef __SDK_VER_H__ 13 #define __SDK_VER_H__ 14 15 #define CAFE_OS_SDK_BUILD_VERSION "68939" 16 #define CAFE_OS_SDK_VERSION_STRING "Cafe OS SDK Version 2.13.01 Build 68939 Branch sdk_2_13" 17 18 #define CAFE_OS_SDK_VERSION 21301 19 #define CAFE_OS_SDK_VERSION_MAJOR (CAFE_OS_SDK_VERSION / 10000) 20 #define CAFE_OS_SDK_VERSION_MINOR ((CAFE_OS_SDK_VERSION % 10000) / 100) 21 #define CAFE_OS_SDK_VERSION_PATCH (CAFE_OS_SDK_VERSION % 100) 22 23 #define OS_VERSION_MINOR 0x3d56 24 25 #define OS_VERSION 0x000500101000800Aull 26 27 #endif 28