siproc.h
1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*---------------------------------------------------------------------
Copyright (C) 1998 Nintendo.
File cont.h
Coded by Tetsuyuki Ootsuka. July, 1998.
Comments Header file for SI Procedure
$Id:
---------------------------------------------------------------------*/
#ifndef _siproc_h_
#define _siproc_h_
/*--------------------------------------------------------------------
マクロ定義
--------------------------------------------------------------------*/
#define SI_MSG_NUM 1
#define RET_MSG_NUM 1
/*--------------------------------------------------------------------
構造体定義
--------------------------------------------------------------------*/
typedef struct{ /* siproc へのメッセージ */
u8 mode;
u8 si_mode;
} sendMsg;
typedef struct{ /* siproc からのメッセージ */
s32 ret;
u8 mode;
u8 si_mode;
} retMsg;
/*--------------------------------------------------------------------
外部宣言
--------------------------------------------------------------------*/
extern OSMesgQueue sendMsgQ; /* siproc へのメッセージ渡し用 */
extern OSMesgQueue retMsgQ; /* siproc からのメッセージ返し用 */
extern void siproc(void);
#endif /* _siproc_h_ */