Diff for /np2/cbus/board26k.c between versions 1.4 and 1.5

version 1.4, 2003/12/04 13:54:28 version 1.5, 2003/12/08 00:55:30
Line 8 Line 8
 #include        "s98.h"  #include        "s98.h"
   
   
 static void IOOUTCALL opn_o188(UINT port, BYTE dat) {  static void IOOUTCALL opn_o188(UINT port, REG8 dat) {
   
         opn.opnreg = dat;          opn.opnreg = dat;
         (void)port;          (void)port;
 }  }
   
 static void IOOUTCALL opn_o18a(UINT port, BYTE dat) {  static void IOOUTCALL opn_o18a(UINT port, REG8 dat) {
   
         S98_put(NORMAL2608, opn.opnreg, dat);          S98_put(NORMAL2608, opn.opnreg, dat);
         if (opn.opnreg < 0x10) {          if (opn.opnreg < 0x10) {
Line 44  static void IOOUTCALL opn_o18a(UINT port Line 44  static void IOOUTCALL opn_o18a(UINT port
         (void)port;          (void)port;
 }  }
   
 static BYTE IOINPCALL opn_i188(UINT port) {  static REG8 IOINPCALL opn_i188(UINT port) {
   
         (void)port;          (void)port;
 #if 1                                                   // ドラッケンで未定義フラグ見てる テスト終了  #if 1                                                   // ドラッケンで未定義フラグ見てる テスト終了
Line 54  static BYTE IOINPCALL opn_i188(UINT port Line 54  static BYTE IOINPCALL opn_i188(UINT port
 #endif  #endif
 }  }
   
 static BYTE IOINPCALL opn_i18a(UINT port) {  static REG8 IOINPCALL opn_i18a(UINT port) {
   
         if (opn.opnreg == 0x0e) {          if (opn.opnreg == 0x0e) {
                 return(fmboard_getjoy(&psg1));                  return(fmboard_getjoy(&psg1));
Line 79  static const IOINP opn_i[4] = { Line 79  static const IOINP opn_i[4] = {
 void board26k_reset(void) {  void board26k_reset(void) {
   
         opngen_setcfg(3, 0);          opngen_setcfg(3, 0);
         fmtimer_reset((BYTE)(np2cfg.snd26opt & 0xc0));          fmtimer_reset(np2cfg.snd26opt & 0xc0);
         soundrom_loadex((BYTE)(np2cfg.snd26opt & 7), "26");          soundrom_loadex(np2cfg.snd26opt & 7, "26");
         opn.base = (np2cfg.snd26opt & 0x10)?0x000:0x100;          opn.base = (np2cfg.snd26opt & 0x10)?0x000:0x100;
 }  }
   

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


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