1 /*---------------------------------------------------------------------------*
2   Project:  TwlSDK - include - twl
3   File:     memorymap.h
4 
5   Copyright 2007-2008 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   $Date:: 2008-09-17#$
14   $Rev: 8556 $
15   $Author: okubata_ryoma $
16  *---------------------------------------------------------------------------*/
17 #ifndef TWL_MEMORYMAP_H_
18 #define TWL_MEMORYMAP_H_
19 #ifdef  __cplusplus
20 extern  "C" {
21 #endif
22 /*---------------------------------------------------------------------------*/
23 #ifdef SDK_TWL
24 
25 #ifdef  SDK_ARM9
26 #include    <twl/hw/ARM9/mmap_global.h>
27 #include    <twl/hw/ARM9/mmap_main.h>
28 #include    <twl/hw/ARM9/mmap_tcm.h>
29 #include    <twl/hw/ARM9/mmap_vram.h>
30 #include    <twl/hw/common/mmap_shared.h>
31 #include    <twl/hw/common/mmap_parameter.h>
32 #include    <twl/hw/ARM9/ioreg.h>
33 
34 #else   /* SDK_ARM7 */
35 #include    <twl/hw/ARM7/mmap_global.h>
36 #include    <twl/hw/ARM7/mmap_main.h>
37 #include    <twl/hw/ARM7/mmap_wram.h>
38 #include    <twl/hw/common/mmap_shared.h>
39 #include    <twl/hw/common/mmap_parameter.h>
40 #include    <twl/hw/ARM7/ioreg.h>
41 #endif
42 
43 #endif //SDK_TWL
44 /*---------------------------------------------------------------------------*/
45 #ifdef  __cplusplus
46 }   /* extern "C" */
47 #endif
48 #endif  /* TWL_MEMORYMAP_H_ */
49