mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-07-21 18:00:56 -05:00
Old structure: put everything in lib/include New structure: put library includes in their respective library folder. e.g. lib/NitroDWC/include/dwc.h
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
|