mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-24 05:07:18 -05:00
15 lines
362 B
C
15 lines
362 B
C
#ifndef NITRO_OS_RESET_H
|
|
#define NITRO_OS_RESET_H
|
|
|
|
#include <nitro/types.h>
|
|
#include <nitro/os/common/reset_shared.h>
|
|
#include <nitro/pxi/fifo.h>
|
|
|
|
void OS_InitReset(void);
|
|
BOOL OS_IsResetOccurred(void);
|
|
static void OSi_CommonCallback(PXIFifoTag tag, u32 data, BOOL err);
|
|
static void OSi_SendToPxi(u16 data);
|
|
void OS_ResetSystem(void);
|
|
|
|
#endif //NITRO_OS_RESET_H
|