65 lines
1.3 KiB
C++
65 lines
1.3 KiB
C++
|
/* ===========================================================================
|
||
|
File: GTIMSYS.C
|
||
|
|
||
|
Notes: Timing system stuff needed by gtim
|
||
|
|
||
|
Author: G Robert Liddon @ 73b
|
||
|
|
||
|
Copyright (C) 1996 DCI Ltd All rights reserved.
|
||
|
============================================================================ */
|
||
|
|
||
|
/* ---------------------------------------------------------------------------
|
||
|
Standard Lib Includes
|
||
|
--------------------- */
|
||
|
|
||
|
/* Standard Lib
|
||
|
------------ */
|
||
|
#include "stdio.h"
|
||
|
|
||
|
/* PSX Os
|
||
|
------ */
|
||
|
|
||
|
/* Glib
|
||
|
---- */
|
||
|
#include "gdebug.h"
|
||
|
|
||
|
/* Headers
|
||
|
------- */
|
||
|
#include "gtimsys.h"
|
||
|
|
||
|
/* ---------------------------------------------------------------------------
|
||
|
Defines and Enums
|
||
|
----------------- */
|
||
|
|
||
|
/* ---------------------------------------------------------------------------
|
||
|
Structs
|
||
|
------- */
|
||
|
|
||
|
/* ---------------------------------------------------------------------------
|
||
|
Vars
|
||
|
---- */
|
||
|
|
||
|
/* ---------------------------------------------------------------------------
|
||
|
Code n that
|
||
|
--------------------------------------------------------------------------- */
|
||
|
|
||
|
U32 GTIMSYS_GetTimer(void)
|
||
|
{
|
||
|
return(0);
|
||
|
|
||
|
}
|
||
|
|
||
|
void GTIMSYS_ResetTimer(void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
U32 GTIMSYS_InitTimer(void)
|
||
|
{
|
||
|
return(0);
|
||
|
}
|
||
|
|
||
|
|
||
|
/* ---------------------------------------------------------------------------
|
||
|
ends */
|