home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / HARDWARE / AT_TCLK.ZIP / CLK_AT&T.DOC next >
Encoding:
Text File  |  1986-03-21  |  1.7 KB  |  38 lines

  1.  
  2.       CLOCKDEV.SYS is a device driver written for the AT&T 6300 real time
  3. clock for use with DOS versions other than those supplied by AT&T. I use
  4. PCDOS 3.1 with my AT&T machine because the version 3.1 of DOS supplied by AT&T
  5. does not support 2K cluster sizes (It configures a 20 Meg hard disk with 8K
  6. clusters like version 2.1 !!).. But the lack of support for the built-in real
  7. time clock is really a pain when using PC-DOS (Imagine typing in the date and
  8. time every time you boot when you HAVE a clock-calender chip in your machine!)
  9.       Use this program like any other DOS device drivers - Copy
  10. CLOCKDEV.SYS onto your system floppy disk or hard disk root directory and add a
  11. line in your CONFIG.SYS file which says,
  12.     DEVICE=CLOCKDEV.SYS
  13.     Now reboot the system and your DATE and TIME prompt will come up with
  14. the right numbers.
  15.      Note : Due to limitations of the chip used on the real time clock
  16.         calender, the system can show years correctly for only 4 years.
  17.         The driver provided will work correctly till December 31,1987
  18.         and the next day it will show a date of January 1, 1984.. This
  19.         can be corrected by patching the driver. This can be done using
  20.         DEBUG as follows.
  21.         C>DEBUG CLOCKDEV.SYS
  22.         -E0116 02
  23.         -W
  24.         Writing 00D6 bytes
  25.         -Q
  26.         C>
  27.         The value of 2 at location 0116 would enable the driver to keep
  28.         the year correctly from 1988 to 1991.. After that you would need
  29.         to increment that number to 3.. (If you're still using the machine
  30.         then !!)
  31.  
  32.       If you find any problems or bugs, please inform me and I'll try to
  33. correct them.. (The program has been working fine for me so far.. but as with
  34. ANY software.. one never knows !!!)
  35.                          Babu Kalakrishnan
  36.                           (415)-965-8859
  37.  
  38.