blob: 9eeab1983f517d2e3c4b71d0b1b46d4b21db35df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef POKEDIAMOND_NITRO_H
#define POKEDIAMOND_NITRO_H
#ifdef __cplusplus
extern "C" {
#endif
// Include all nitro files
#include "sections.h"
#include "misc.h"
#include "types.h"
#include "consts.h"
#include "OS_init.h"
#include "mmap.h"
#ifdef __cplusplus
}
#endif
#endif //POKEDIAMOND_NITRO_H
|