WonXSystemP.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef _WonXSystemP_h_INCLUDED_
  2. #define _WonXSystemP_h_INCLUDED_
  3. /*****************************************************************************/
  4. /* ここから */
  5. /*****************************************************************************/
  6. #include "WonXSystem.h"
  7. /*****************************************************************************/
  8. /* クラスの定義 */
  9. /*****************************************************************************/
  10. typedef struct _WonXSystem {
  11. WWInterrupt ww_interrupt;
  12. /*
  13. * ww_timer[0] はVBLANK割り込み用.
  14. * ww_timer[1] はVBLANKを利用したタイマカウンタ割り込み用.
  15. * ww_timer[2] はHBLANKを利用したタイマカウンタ割り込み用.
  16. */
  17. WWTimer ww_timer[3];
  18. UNIXTimer unix_timer;
  19. } _WonXSystem;
  20. /*****************************************************************************/
  21. /* ここまで */
  22. /*****************************************************************************/
  23. #endif
  24. /*****************************************************************************/
  25. /* End of File. */
  26. /*****************************************************************************/