pokeplatinum/lib/NitroSDK/include/nitro/memorymap.h
luckytyphlosion 320da2296d Move around library includes.
Old structure: put everything in lib/include
New structure: put library includes in their respective library folder. e.g. lib/NitroDWC/include/dwc.h
2023-01-05 18:53:16 -05: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