pokeheartgold/lib/include/nitro/os/init.h
2021-09-22 19:45:06 -04:00

23 lines
548 B
C

#ifndef NITRO_SUB_OS_INIT_H
#define NITRO_SUB_OS_INIT_H
#include <nitro/types.h>
#include <nitro/hw/consts.h>
#include <nitro/os/system.h>
#include <nitro/os/arena.h>
#include <nitro/os/alloc.h>
#include <nitro/os/reset.h>
#include <nitro/os/terminate_proc.h>
#include <nitro/os/spinLock.h>
#include <nitro/os/context.h>
#include <nitro/os/interrupt.h>
#include <nitro/os/irqTable.h>
#include <nitro/os/timer.h>
#include <nitro/os/tick.h>
#include <nitro/os/message.h>
void OS_Init(void);
void OS_InitArenaEx(void);
#endif //NITRO_SUB_OS_INIT_H