Diff for /np2/sound/cs4231c.c between versions 1.1 and 1.4

version 1.1, 2003/10/16 17:58:08 version 1.4, 2003/12/08 00:55:33
Line 1 Line 1
 #include        "compiler.h"  #include        "compiler.h"
 #include        "memory.h"  
 #include        "pccore.h"  #include        "pccore.h"
 #include        "iocore.h"  #include        "iocore.h"
 #include        "sound.h"  #include        "sound.h"
 #include        "fmboard.h"  #include        "fmboard.h"
   
   
           CS4231CFG       cs4231cfg;
   
   
 static const UINT16 cs4231samprate[] = {  static const UINT16 cs4231samprate[] = {
                                          8000,   5510,  16000,  11025,                                           8000,   5510,  16000,  11025,
                                         27420,  18900,  32000,  22050,                                          27420,  18900,  32000,  22050,
Line 18  static const BYTE dmairq[] = {0xff, 0x03 Line 20  static const BYTE dmairq[] = {0xff, 0x03
   
 void cs4231_initialize(UINT rate) {  void cs4231_initialize(UINT rate) {
   
         (void)rate;          cs4231cfg.rate = rate;
 }  }
   
 void cs4231_setvol(UINT vol) {  void cs4231_setvol(UINT vol) {
Line 29  void cs4231_setvol(UINT vol) { Line 31  void cs4231_setvol(UINT vol) {
   
 void cs4231_dma(NEVENTITEM item) {  void cs4231_dma(NEVENTITEM item) {
   
         BYTE    ret;          REG8    ret;
         SINT32  cnt;          SINT32  cnt;
   
         if (item->flag & NEVENT_SETEVENT) {          if (item->flag & NEVENT_SETEVENT) {
Line 42  void cs4231_dma(NEVENTITEM item) { Line 44  void cs4231_dma(NEVENTITEM item) {
                                 pic_setirq(0x0c);                                  pic_setirq(0x0c);
                         }                          }
                 }                  }
                 cnt = pc.realclock * 16 / opna_rate;                  if (cs4231cfg.rate) {
                 nevent_set(NEVENT_CS4231, cnt, cs4231_dma, NEVENT_RELATIVE);                          cnt = pc.realclock * 16 / cs4231cfg.rate;
                           nevent_set(NEVENT_CS4231, cnt, cs4231_dma, NEVENT_RELATIVE);
                   }
         }          }
         (void)item;          (void)item;
 }  }
   
 BYTE DMACCALL cs4231dmafunc(BYTE func) {  REG8 DMACCALL cs4231dmafunc(REG8 func) {
   
         SINT32  cnt;          SINT32  cnt;
   
         switch(func) {          switch(func) {
                 case DMAEXT_START:                  case DMAEXT_START:
                         cnt = pc.realclock * 16 / opna_rate;                          if (cs4231cfg.rate) {
                         nevent_set(NEVENT_CS4231, cnt, cs4231_dma, NEVENT_ABSOLUTE);                                  cnt = pc.realclock * 16 / cs4231cfg.rate;
                                   nevent_set(NEVENT_CS4231, cnt, cs4231_dma, NEVENT_ABSOLUTE);
                           }
                         break;                          break;
   
                 case DMAEXT_BREAK:                  case DMAEXT_BREAK:
Line 78  void cs4231_update(void) { Line 84  void cs4231_update(void) {
 }  }
   
   
 void cs4231_control(UINT index, BYTE value) {  void cs4231_control(UINT index, REG8 value) {
   
         *(((BYTE *)(&cs4231.reg)) + index) = value;          *(((BYTE *)(&cs4231.reg)) + index) = value;
         switch(index) {          switch(index) {

Removed from v.1.1  
changed lines
  Added in v.1.4


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