pokeplatinum/lib/include/nitro/memorymap.h
2022-12-29 13:47:47 +01:00

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