Diff for /np2/io/pit.c between versions 1.11 and 1.17

version 1.11, 2003/12/11 21:57:38 version 1.17, 2004/03/10 07:41:49
Line 3 Line 3
 //   // 
   
 #include        "compiler.h"  #include        "compiler.h"
   #include        "cpucore.h"
 #include        "pccore.h"  #include        "pccore.h"
 #include        "iocore.h"  #include        "iocore.h"
 #include        "sound.h"  #include        "sound.h"
Line 15 Line 16
   
 // --- Interval timer  // --- Interval timer
   
 // ver0.31 常に回す…  
 static void setsystimerevent_noint(BOOL absolute) {  
   
         nevent_set(NEVENT_ITIMER, pc.multiple << 16, systimer_noint, absolute);  
 }  
   
 void systimer_noint(NEVENTITEM item) {  
   
         if (item->flag & NEVENT_SETEVENT) {  
                 setsystimerevent_noint(NEVENT_RELATIVE);  
         }  
 }  
   
 static void setsystimerevent(BOOL absolute) {  static void setsystimerevent(BOOL absolute) {
   
         SINT32  cnt;          SINT32  cnt;
   
         cnt = pit.value[0];          cnt = pit.value[0];
         if (cnt > 8) {                                                                  // 根拠なし          if (cnt > 8) {                                                                  // 根拠なし
                 cnt *= pc.multiple;                  cnt *= pccore.multiple;
         }          }
         else {          else {
                 cnt = pc.multiple << 16;                  cnt = pccore.multiple << 16;
         }          }
         nevent_set(NEVENT_ITIMER, cnt, systimer, absolute);          nevent_set(NEVENT_ITIMER, cnt, systimer, absolute);
 }  }
Line 53  void systimer(NEVENTITEM item) { Line 41  void systimer(NEVENTITEM item) {
                         // レートジェネレータ                          // レートジェネレータ
                         pit.intr[0] = 1;                          pit.intr[0] = 1;
                         setsystimerevent(NEVENT_RELATIVE);                          setsystimerevent(NEVENT_RELATIVE);
                         TRACEOUT(("intr-next"));  
                 }                  }
                 else {                  else {
                         nevent_set(NEVENT_ITIMER, pc.multiple << 16,                          nevent_set(NEVENT_ITIMER, pccore.multiple << 16,
                                                                                                 systimer, NEVENT_RELATIVE);                                                                                                  systimer, NEVENT_RELATIVE);
                 }                  }
         }          }
Line 72  static void setbeepeventex(BOOL absolute Line 59  static void setbeepeventex(BOOL absolute
   
         cnt = pit.value[1];          cnt = pit.value[1];
         if (cnt > 2) {          if (cnt > 2) {
                 cnt *= pc.multiple;                  cnt *= pccore.multiple;
         }          }
         else {          else {
                 cnt = pc.multiple << 16;                  cnt = pccore.multiple << 16;
         }          }
         while(cnt < 0x100000) {          while(cnt < 0x100000) {
                 cnt <<= 1;                  cnt <<= 1;
Line 90  static void setbeepevent(BOOL absolute)  Line 77  static void setbeepevent(BOOL absolute) 
   
         cnt = pit.value[1];          cnt = pit.value[1];
         if (cnt > 2) {          if (cnt > 2) {
                 cnt *= pc.multiple;                  cnt *= pccore.multiple;
         }          }
         else {          else {
                 cnt = pc.multiple << 16;                  cnt = pccore.multiple << 16;
         }          }
         nevent_set(NEVENT_BEEP, cnt, beeponeshot, absolute);          nevent_set(NEVENT_BEEP, cnt, beeponeshot, absolute);
 }  }
Line 104  void beeponeshot(NEVENTITEM item) { Line 91  void beeponeshot(NEVENTITEM item) {
                 if (!(pit.mode[1] & 0x0c)) {                                                            // ver0.30                  if (!(pit.mode[1] & 0x0c)) {                                                            // ver0.30
                         beep_lheventset(0);                          beep_lheventset(0);
                 }                  }
 #ifdef uPD71054  #if defined(uPD71054)
                 if ((pit.mode[1] & 0x06) == 0x02)                  if ((pit.mode[1] & 0x06) == 0x02)
 #else  #else
                 if (pit.mode[1] & 0x02)                  if (pit.mode[1] & 0x02)
Line 127  static void setrs232cevent(BOOL absolute Line 114  static void setrs232cevent(BOOL absolute
         SINT32  cnt;          SINT32  cnt;
   
         if (pit.value[2] > 1) {          if (pit.value[2] > 1) {
                 cnt = pc.multiple * pit.value[2] * rs232c.mul;                  cnt = pccore.multiple * pit.value[2] * rs232c.mul;
         }          }
         else {          else {
                 cnt = (pc.multiple << 16) * rs232c.mul;                  cnt = (pccore.multiple << 16) * rs232c.mul;
         }          }
         nevent_set(NEVENT_RS232C, cnt, rs232ctimer, absolute);          nevent_set(NEVENT_RS232C, cnt, rs232ctimer, absolute);
 }  }
Line 155  static UINT pit_latch(int ch) { Line 142  static UINT pit_latch(int ch) {
   
         if (ch == 1) {          if (ch == 1) {
                 switch(pit.mode[1] & 0x06) {                  switch(pit.mode[1] & 0x06) {
   #ifdef uPD71054                         // ?
                         case 0x00:                          case 0x00:
   #endif
                         case 0x04:                          case 0x04:
                                 return(pit.value[1]);                                  return(pit.value[1]);
 #ifdef uPD71054  #ifdef uPD71054
Line 168  static UINT pit_latch(int ch) { Line 157  static UINT pit_latch(int ch) {
                 if (clock < 0) {                  if (clock < 0) {
                         return(0);                          return(0);
                 }                  }
                 clock /= pc.multiple;                  clock /= pccore.multiple;
                 if (pit.value[1] > 2) {                  if (pit.value[1] > 2) {
                         clock %= pit.value[1];                          clock %= pit.value[1];
                 }                  }
                 else {                  else {
                         clock >>= 16;                          clock = LOW16(clock);
                 }                  }
                 return(clock);                  return(clock);
 #endif  #endif
         }          }
         clock = nevent_getremain(NEVENT_ITIMER + ch);          clock = nevent_getremain(NEVENT_ITIMER + ch);
         if (clock >= 0) {          if (clock >= 0) {
                 return(clock / pc.multiple);                  return(clock / pccore.multiple);
         }          }
         return(0);          return(0);
 }  }
Line 334  static const IOINP piti71[4] = { Line 323  static const IOINP piti71[4] = {
 void itimer_reset(void) {  void itimer_reset(void) {
   
         ZeroMemory(&pit, sizeof(pit));          ZeroMemory(&pit, sizeof(pit));
         if (pc.cpumode & CPUMODE_8MHz) {          if (pccore.cpumode & CPUMODE_8MHZ) {
                 pit.value[1] = 998;                             // 4MHz                  pit.value[1] = 998;                             // 4MHz
         }          }
         else {          else {
Line 353  void itimer_bind(void) { Line 342  void itimer_bind(void) {
   
         iocore_attachsysoutex(0x0071, 0x0cf1, pito71, 4);          iocore_attachsysoutex(0x0071, 0x0cf1, pito71, 4);
         iocore_attachsysinpex(0x0071, 0x0cf1, piti71, 4);          iocore_attachsysinpex(0x0071, 0x0cf1, piti71, 4);
           iocore_attachout(0x3fd9, pit_o71);
         iocore_attachout(0x3fdb, pit_o73);          iocore_attachout(0x3fdb, pit_o73);
           iocore_attachout(0x3fdd, pit_o75);
         iocore_attachout(0x3fdf, pit_o77);          iocore_attachout(0x3fdf, pit_o77);
           iocore_attachinp(0x3fd9, pit_i71);
         iocore_attachinp(0x3fdb, pit_i71);          iocore_attachinp(0x3fdb, pit_i71);
           iocore_attachinp(0x3fdd, pit_i71);
 }  }
   

Removed from v.1.11  
changed lines
  Added in v.1.17


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