mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-12 05:44:27 -05:00
23 lines
548 B
C
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
|