mirror of
https://github.com/pret/pokeheartgold.git
synced 2024-12-14 00:20:22 +00:00
25 lines
649 B
C
25 lines
649 B
C
#ifndef NITRO_OS_H_
|
|
#define NITRO_OS_H_
|
|
|
|
#include <nitro/os/context.h>
|
|
#include <nitro/os/system.h>
|
|
#include <nitro/os/systemWork.h>
|
|
#include <nitro/os/tcm.h>
|
|
#include <nitro/os/thread.h>
|
|
#include <nitro/os/mutex.h>
|
|
#include <nitro/os/interrupt.h>
|
|
#include <nitro/os/systemCall.h>
|
|
#include <nitro/os/spinLock.h>
|
|
#include <nitro/os/printf.h>
|
|
#include <nitro/os/init.h>
|
|
#include <nitro/os/exception.h>
|
|
#include <nitro/os/valarm.h>
|
|
#include <nitro/os/vramExclusive.h>
|
|
#include <nitro/os/emulator.h>
|
|
#include <nitro/os/protectionRegion.h>
|
|
#include <nitro/os/protectionUnit.h>
|
|
#include <nitro/os/tick.h>
|
|
#include <nitro/os/alarm.h>
|
|
|
|
#endif //NITRO_OS_H_
|