Diff for /np2/io/pit.c between versions 1.23 and 1.25

version 1.23, 2004/07/03 17:25:39 version 1.25, 2005/05/20 13:59:47
Line 126  void rs232ctimer(NEVENTITEM item) { Line 126  void rs232ctimer(NEVENTITEM item) {
   
         if (item->flag & NEVENT_SETEVENT) {          if (item->flag & NEVENT_SETEVENT) {
                 pitch = pit.ch + 2;                  pitch = pit.ch + 2;
                   if (pitch->flag & PIT_FLAG_I) {
                           pitch->flag &= ~PIT_FLAG_I;
                           rs232c_callback();
                   }
                 if ((pitch->ctrl & 0x0c) == 0x04) {                  if ((pitch->ctrl & 0x0c) == 0x04) {
                         // レートジェネレータ                          // レートジェネレータ
                         setrs232cevent(pitch->value, NEVENT_RELATIVE);                          setrs232cevent(pitch->value, NEVENT_RELATIVE);
                 }                  }
                   else {
                           setrs232cevent(0, NEVENT_RELATIVE);
                   }
         }          }
         rs232c_callback();  
 }  }
   
   
Line 353  static void IOOUTCALL pit_o75(UINT port, Line 359  static void IOOUTCALL pit_o75(UINT port,
         if (pit_setcount(pitch, dat)) {          if (pit_setcount(pitch, dat)) {
                 return;                  return;
         }          }
           pitch->flag |= PIT_FLAG_I;
         rs232c_open();          rs232c_open();
         setrs232cevent(pitch->value, NEVENT_ABSOLUTE);          setrs232cevent(pitch->value, NEVENT_ABSOLUTE);
         (void)port;          (void)port;
Line 428  void itimer_reset(void) { Line 435  void itimer_reset(void) {
         setsystimerevent(0, NEVENT_ABSOLUTE);          setsystimerevent(0, NEVENT_ABSOLUTE);
         beep_lheventset(1);                                                                                             // ver0.79          beep_lheventset(1);                                                                                             // ver0.79
         beep_hzset(beepcnt);          beep_hzset(beepcnt);
   //      setrs232cevent(0, NEVENT_ABSOLUTE);
 }  }
   
 void itimer_bind(void) {  void itimer_bind(void) {

Removed from v.1.23  
changed lines
  Added in v.1.25


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