home *** CD-ROM | disk | FTP | other *** search
- ;----------------------------------------------------------------------------
- ; Copyright(C) 1996, The AEGiS Corporation
- ;----------------------------------------------------------------------------
- ;
- ; FUNCTION Timer()
- ;
- ; Returns the number of clock ticks since midnight
- ; Very usefull for accurate timing routines (for games for example)
- ;
- ;----------------------------------------------------------------------------
- #lib
- Declare Function Timer() DWord
-
- ;----------------------------------------------------------------------------
- Function Timer() DWord
- Timer = PeekDW(MKADDR(0040h,006Ch))
- Endfunc
-
-