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