cticks.hh 646 B

1234567891011121314151617181920212223
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. __inline w32 get_clock()
  9. {
  10. w32 res;
  11. __asm {
  12. push eax
  13. push edx
  14. __emit 0x0F
  15. __emit 0x31
  16. mov res,eax
  17. pop edx
  18. pop eax
  19. }
  20. return res;
  21. }