1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     CTR.h
4 
5   Copyright (C)2009-2012 Nintendo Co., Ltd.  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   $Rev: 46347 $
14  *---------------------------------------------------------------------------*/
15 
16 /* Please see man pages for details
17 
18 
19 
20 */
21 
22 #ifndef NN_CONFIG_PLATFORM_CTR_H_
23 #define NN_CONFIG_PLATFORM_CTR_H_
24 
25 
26 
27 //
28 //
29 
30 //
31 //
32 
33 //---------------------------------------------------------------------------
34 //
35 //
36 //
37 //
38 //
39 //
40 //---------------------------------------------------------------------------
41 #define NN_ENDIAN               NN_ENDIAN_VALUE_LITTLE
42 
43 
44 //---------------------------------------------------------------------------
45 //
46 //
47 //
48 //
49 //---------------------------------------------------------------------------
50 #define NN_ENDIAN_VALUE_BIG     'B'
51 
52 //---------------------------------------------------------------------------
53 //
54 //
55 //
56 //
57 //---------------------------------------------------------------------------
58 #define NN_ENDIAN_VALUE_LITTLE  'L'
59 
60 //
61 
62 //
63 
64 
65 #if     defined(NN_PROCESSOR_ARM_V6)
66     #define NN_PLATFORM_HAS_MMU             1
67     #define NN_PLATFORM_USE_FP              1
68     #define NN_PLATFORM_HAS_16BIT_LL_SC     1
69 #else
70     #define NN_PLATFORM_HAS_MMU             0
71     #define NN_PLATFORM_USE_FP              0
72     #define NN_PLATFORM_HAS_16BIT_LL_SC     0
73 #endif
74 
75 
76 /* NN_CONFIG_PLATFORM_CTR_H_ */
77 #endif
78