home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / HILFEN / SYSTEM / ATCLOK / MODIFY.TXT < prev   
Text File  |  1993-12-01  |  509b  |  22 lines

  1. My Phoenix ROM BIOS PLUS 3.10 didn't reset carry flag when it was
  2. tested reading time.
  3. The lines from D.Rifkind's source code I've modified as below:
  4.  
  5. *** original ATCLOCK.SYS
  6.                 mov     ah, 2h
  7.                 stc
  8.                 int     1Ah
  9.                 jnc     clk_initialize_1
  10.  
  11. *** modified ATCLOCK.BIN
  12.                 mov     ah, 2h
  13. ;                stc
  14.                 int     1Ah
  15.                 cmp     ah, 0
  16.                 jz      clk_initialize_1
  17.  
  18. ***
  19.  
  20. Vincent
  21.  
  22.