/*---------------------------------------------------------------------------* Project: OS Platform information File: OSPlatform.h Copyright 1998-2011 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 __OSPLATFORM_H__ #define __OSPLATFORM_H__ #ifdef __cplusplus extern "C" { #endif // console types #define OS_CONSOLE_MASK 0xf0000000 #define OS_CONSOLE_RETAIL 0x00000000 #define OS_CONSOLE_DEVELOPMENT 0x10000000 #define OS_CONSOLE_CAT_1_0 0x13000048 #define OS_CONSOLE_CAFE_1_0 0x03000050 #ifdef __cplusplus } #endif #endif // __OSPLATFORM_H__