mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-07-25 04:10:42 -05:00
29 lines
572 B
C
29 lines
572 B
C
#ifndef NITRO_MEMORYMAP_H_
|
|
#define NITRO_MEMORYMAP_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef SDK_ARM9
|
|
#include <nitro/hw/ARM9/mmap_global.h>
|
|
#include <nitro/hw/ARM9/mmap_main.h>
|
|
#include <nitro/hw/ARM9/mmap_tcm.h>
|
|
#include <nitro/hw/ARM9/mmap_vram.h>
|
|
#include <nitro/hw/common/mmap_shared.h>
|
|
#include <nitro/hw/ARM9/ioreg.h>
|
|
|
|
#else
|
|
#include <nitro/hw/ARM7/mmap_global.h>
|
|
#include <nitro/hw/ARM7/mmap_main.h>
|
|
#include <nitro/hw/ARM7/mmap_wram.h>
|
|
#include <nitro/hw/common/mmap_shared.h>
|
|
#include <nitro/hw/ARM7/ioreg.h>
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|