mirror of
https://github.com/rvtr/ntr_bootrom.git
synced 2025-10-31 07:11:11 -04:00
35 lines
1011 B
C
35 lines
1011 B
C
//======================================================================
|
|
// IrisSystemCallDefine.h
|
|
// IRIS システムコール用定数
|
|
//
|
|
// Copyright (C) 2003 NINTENDO Co.,Ltd.
|
|
//======================================================================
|
|
#ifndef _IRIS_SUBP_SYSTEM_CALL_DEFINE_H
|
|
#define _IRIS_SUBP_SYSTEM_CALL_DEFINE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
#include <IrisSubpTarget.h>
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
// システムコールNo
|
|
//----------------------------------------------------------------------
|
|
|
|
#define SWI_NO_WAIT_INTR 4 // SVC_WaitIntr()
|
|
#define SWI_NO_WAIT_VBLANK_INTR 5 // SVC_WaitVBlankIntr()
|
|
|
|
#define SWI_NO_CPU_SET 11 // SVC_CpuSet()
|
|
#define SWI_NO_CPU_SET_FAST 12 // SVC_CpuSetFast()
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // _IRIS_SUBP_SYSTEM_CALL_DEFINE_H
|