home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_03 / 9n03066a < prev    next >
Text File  |  1991-01-17  |  478b  |  26 lines

  1.  
  2. /* 
  3.  * Modulename:  clock.sys
  4.  *
  5.  * Description: include file for clock.c
  6.  *
  7.  */
  8. #include "cc51.h"
  9. #ifdef _CC51
  10.  
  11. #define simulate_timer_int()
  12.  
  13. #else
  14.  
  15. #define sfrbyte unsigned char
  16. #define sfrbit unsigned char
  17. #include "reg51.sfr"
  18. #define using( x )
  19. #define interrupt( x )
  20. #define out_char( c ) putchar( (c) )
  21. #define _da( x )  ( (((x) & 0x0f) > 0x09) ? \
  22. ((x + 6) >= 0xa0 ? 0 : x + 6 ) :  x ) 
  23. #define simulate_timer_int tint
  24. #include <stdio.h>
  25. #endif
  26.