blob: 23793fd47db81bd27455880540f6e93593985cbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "function_target.h"
#include "nitro/types.h"
#include "OS_terminate_proc.h"
#include "OS_system.h"
extern void CTRDG_VibPulseEdgeUpdate(u32 param);
extern void FUN_037F8530(void); //SVC_Halt
ARM_FUNC void OS_Terminate(void)
{
CTRDG_VibPulseEdgeUpdate(0);
while (TRUE)
{
(void)OS_DisableInterrupts();
FUN_037F8530(); //SVC_Halt
}
}
|