mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-07-24 20:00:52 -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
401 B
C
29 lines
401 B
C
#ifndef NITRO_RTC_H_
|
|
#define NITRO_RTC_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <nitro/rtc/common/type.h>
|
|
#include <nitro/rtc/common/fifo.h>
|
|
|
|
#ifdef SDK_ARM7
|
|
|
|
#include <nitro/rtc/ARM7/control.h>
|
|
#include <nitro/rtc/ARM7/instruction.h>
|
|
#include <nitro/rtc/ARM7/gpio.h>
|
|
|
|
#else
|
|
|
|
#include <nitro/rtc/ARM9/api.h>
|
|
#include <nitro/rtc/ARM9/convert.h>
|
|
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|