home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / CPM3 / DATEP2.LBR / EIDI.AZ / EIDI.AS
Text File  |  2000-06-30  |  384b  |  15 lines

  1. ; A couple of really HUGE routines for use when adjusting the system
  2. ; clock.  You don't need these routines if your C compiler's library
  3. ; has them already.
  4. ;
  5. ; Invoke from C program as   ei()  or  di()
  6.  
  7.     psect    text
  8.     global    _ei, _di
  9. _ei:
  10.     ei
  11.     ret
  12. _di:
  13.     di
  14.     ret
  15.