1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     nn.h
4 
5   Copyright (C)2009 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: 14377 $
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef NN_H_
17 #define NN_H_
18 
19 /*! @namespace  nn
20     @brief      ルートとなる名前空間
21 
22     @defgroup   nn_root         nn
23     @brief      ルートとなるモジュール
24 */
25 
26 
27 
28 /*! @mainpage
29 
30 <h2>"Confidential"</h2>
31 <hr>
32 This document contains confidential and proprietary information of Nintendo
33 and is also protected under the copyright laws of the United States and
34 foreign countries. No part of this document may be released, distributed,
35 transmitted or reproduced in any form or by any electronic or mechanical
36 means, including information storage and retrieval systems, without permission
37 in writing from Nintendo.
38 
39 (c) 2009 Nintendo Co.,Ltd. All rights reserved.
40 <hr>
41 <h2>このドキュメントの内容は、秘密情報であるため、厳重な取扱い、管理を行なってください。</h2>
42 */
43 #include <nn/config.h>
44 #include <nn/types.h>
45 #include <nn/assert.h>
46 
47 #include <nn/Result.h>
48 #include <nn/Handle.h>
49 
50 #include <nn/init.h>
51 #include <nn/dbg.h>
52 #include <nn/os.h>
53 #include <nn/util.h>
54 #include <nn/nstd.h>
55 
56 
57 #if     defined(NN_PLATFORM_CTR)
58     #if     defined(NN_SYSTEM_PROCESS)
59         #include <nn/fnd.h>
60         #include <nn/math.h>
61 
62         #if     defined(NN_PROCESSOR_ARM_V6)
63             #if     ! defined(NN_HARDWARE_CTR_LEGACY)
64                 #include <nn/camera.h>
65                 #include <nn/crypto.h>
66                 #include <nn/dsp.h>
67                 #include <nn/fs.h>
68                 #include <nn/gx.h>
69                 #include <nn/hid.h>
70                 #include <nn/mic.h>
71             #endif
72         #endif
73     #endif
74 #else
75     #error NN_PLATFORM_ not specified
76 #endif
77 
78 
79 #endif
80