blob: afb1d9a2c547a40a644a08fd9ceaab38d8a928b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef POKEDIAMOND_ARM7_OS_INIT_H
#define POKEDIAMOND_ARM7_OS_INIT_H
#include "nitro/types.h"
#include "consts.h"
#include "OS_system.h"
#include "OS_arena.h"
#include "OS_alloc.h"
#include "OS_reset.h"
#include "OS_terminate_proc.h"
#include "OS_spinLock.h"
#include "OS_context.h"
#include "OS_interrupt.h"
#include "OS_irqTable.h"
#include "OS_timer.h"
#include "OS_tick.h"
#include "OS_message.h"
void OS_Init(void);
#endif //POKEDIAMOND_ARM7_OS_INIT_H
|