Diff for /np2/bios/bios1c.c between versions 1.7 and 1.8

version 1.7, 2004/02/19 11:32:11 version 1.8, 2004/03/04 17:36:05
Line 28  void bios0x1c(void) { Line 28  void bios0x1c(void) {
         switch(CPU_AH) {          switch(CPU_AH) {
                 case 0x00:                                      // get system timer                  case 0x00:                                      // get system timer
                         calendar_get(buf);                          calendar_get(buf);
                         i286_memstr_write(CPU_ES, CPU_BX, buf, 6);                          MEML_WRITESTR(CPU_ES, CPU_BX, buf, 6);
                         break;                          break;
   
                 case 0x01:                                      // put system timer                  case 0x01:                                      // put system timer
                         i286_memstr_read(CPU_ES, CPU_BX, buf, 6);                          MEML_READSTR(CPU_ES, CPU_BX, buf, 6);
                         mem[MEMB_MSW8] = buf[0];                          mem[MEMB_MSW8] = buf[0];
                         calendar_set(buf);                          calendar_set(buf);
                         break;                          break;

Removed from v.1.7  
changed lines
  Added in v.1.8


RetroPC.NET-CVS <cvs@retropc.net>