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