/*---------------------------------------------------------------------------* Copyright (C) Nintendo. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. *---------------------------------------------------------------------------*/ #ifndef __SDK_VER_H__ #define __SDK_VER_H__ #define CAFE_OS_SDK_BUILD_VERSION "68939" #define CAFE_OS_SDK_VERSION_STRING "Cafe OS SDK Version 2.13.01 Build 68939 Branch sdk_2_13" #define CAFE_OS_SDK_VERSION 21301 #define CAFE_OS_SDK_VERSION_MAJOR (CAFE_OS_SDK_VERSION / 10000) #define CAFE_OS_SDK_VERSION_MINOR ((CAFE_OS_SDK_VERSION % 10000) / 100) #define CAFE_OS_SDK_VERSION_PATCH (CAFE_OS_SDK_VERSION % 100) #define OS_VERSION_MINOR 0x3d56 #define OS_VERSION 0x000500101000800Aull #endif