38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
#ifndef _WonXSystemP_h_INCLUDED_
|
||
#define _WonXSystemP_h_INCLUDED_
|
||
|
||
/*****************************************************************************/
|
||
/* ここから */
|
||
/*****************************************************************************/
|
||
|
||
#include "WonXSystem.h"
|
||
|
||
/*****************************************************************************/
|
||
/* クラスの定義 */
|
||
/*****************************************************************************/
|
||
|
||
typedef struct _WonXSystem {
|
||
|
||
WWInterrupt ww_interrupt;
|
||
|
||
/*
|
||
* ww_timer[0] はVBLANK割り込み用.
|
||
* ww_timer[1] はVBLANKを利用したタイマカウンタ割り込み用.
|
||
* ww_timer[2] はHBLANKを利用したタイマカウンタ割り込み用.
|
||
*/
|
||
WWTimer ww_timer[3];
|
||
|
||
UNIXTimer unix_timer;
|
||
|
||
} _WonXSystem;
|
||
|
||
/*****************************************************************************/
|
||
/* ここまで */
|
||
/*****************************************************************************/
|
||
|
||
#endif
|
||
|
||
/*****************************************************************************/
|
||
/* End of File. */
|
||
/*****************************************************************************/
|