1 /*---------------------------------------------------------------------------* 2 Project: OS Platform information 3 File: OSPlatform.h 4 5 Copyright (C) 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 *---------------------------------------------------------------------------*/ 14 15 #ifndef __OSPLATFORM_H__ 16 #define __OSPLATFORM_H__ 17 18 #ifdef __cplusplus 19 extern "C" { 20 #endif 21 22 // console types 23 #define OS_CONSOLE_MASK 0xf0000000 24 #define OS_CONSOLE_RETAIL 0x00000000 25 #define OS_CONSOLE_DEVELOPMENT 0x10000000 26 27 #define OS_CONSOLE_CAT_1_0 0x13000048 28 #define OS_CONSOLE_CAFE_1_0 0x03000050 29 30 #ifdef __cplusplus 31 } 32 #endif 33 34 #endif // __OSPLATFORM_H__ 35 36