Previous 199869 Revisions Next

r32773 Thursday 16th October, 2014 at 07:18:15 UTC by Fabio Priuli
converted sn76477 to use inline config. nw.
[src/emu/sound]sn76477.c sn76477.h
[src/mame/audio]8080bw.c astrof.c crbaloon.c mw8080bw.c n8080.c snk6502.c
[src/mame/drivers]8080bw.c dai3wksi.c gp_1.c laserbat.c malzak.c rotaryf.c route16.c snk6502.c spectra.c toratora.c
[src/mame/includes]8080bw.h snk6502.h
[src/mess/drivers]abc80.c hec2hrp.c interact.c
[src/mess/includes]hec2hrp.h
[src/mess/machine]hec2hrp.c

trunk/src/mame/includes/snk6502.h
r32772r32773
149149extern const char *const sasuke_sample_names[];
150150extern const char *const vanguard_sample_names[];
151151extern const char *const fantasy_sample_names[];
152extern const sn76477_interface sasuke_sn76477_intf_1;
153extern const sn76477_interface sasuke_sn76477_intf_2;
154extern const sn76477_interface sasuke_sn76477_intf_3;
155extern const sn76477_interface satansat_sn76477_intf;
156extern const sn76477_interface vanguard_sn76477_intf_1;
157extern const sn76477_interface vanguard_sn76477_intf_2;
158extern const sn76477_interface fantasy_sn76477_intf;
trunk/src/mame/includes/8080bw.h
r32772r32773
165165DISCRETE_SOUND_EXTERN( ballbomb );
166166DISCRETE_SOUND_EXTERN( indianbt );
167167DISCRETE_SOUND_EXTERN( polaris );
168
169extern const sn76477_interface lupin3_sn76477_interface;
170extern const sn76477_interface schaser_sn76477_interface;
171168DISCRETE_SOUND_EXTERN( schaser );
trunk/src/mame/drivers/8080bw.c
r32772r32773
13891389   MCFG_SPEAKER_STANDARD_MONO("mono")
13901390
13911391   MCFG_SOUND_ADD("snsnd", SN76477, 0)
1392   MCFG_SOUND_CONFIG(schaser_sn76477_interface)
1392   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_K(330), CAP_P(470)) // noise + filter
1393   MCFG_SN76477_DECAY_RES(RES_M(2.2))                   // decay_res
1394   MCFG_SN76477_ATTACK_PARAMS(CAP_U(1.0), RES_K(4.7))   // attack_decay_cap + attack_res
1395   MCFG_SN76477_AMP_RES(0)                              // amplitude_res
1396   MCFG_SN76477_FEEDBACK_RES(RES_K(33))                 // feedback_res
1397   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.1), RES_K(39))    // VCO volt + cap + res
1398   MCFG_SN76477_PITCH_VOLTAGE(5.0)                      // pitch_voltage
1399   MCFG_SN76477_SLF_PARAMS(CAP_U(1.0), RES_K(120))      // slf caps + res
1400   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(0.1), RES_K(220))  // oneshot caps + res
1401   MCFG_SN76477_VCO_MODE(1)                             // VCO mode
1402   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                   // mixer A, B, C
1403   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                   // envelope 1, 2
1404   MCFG_SN76477_ENABLE(1)                               // enable
13931405   MCFG_SOUND_ROUTE_EX(0, "discrete", 1.0, 0)
13941406
13951407   MCFG_SOUND_ADD("discrete", DISCRETE, 0)
r32772r32773
16621674   MCFG_SPEAKER_STANDARD_MONO("mono")
16631675
16641676   MCFG_SOUND_ADD("snsnd", SN76477, 0)
1665   MCFG_SOUND_CONFIG(lupin3_sn76477_interface)
1677   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                  // noise + filter: N/C
1678   MCFG_SN76477_DECAY_RES(0)                           // decay_res: N/C
1679   MCFG_SN76477_ATTACK_PARAMS(0, RES_K(100))           // attack_decay_cap + attack_res
1680   MCFG_SN76477_AMP_RES(RES_K(56))                     // amplitude_res
1681   MCFG_SN76477_FEEDBACK_RES(RES_K(10))                // feedback_res
1682   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.1), RES_K(8.2))  // VCO volt + cap + res
1683   MCFG_SN76477_PITCH_VOLTAGE(5.0)                     // pitch_voltage
1684   MCFG_SN76477_SLF_PARAMS(CAP_U(1.0), RES_K(120))     // slf caps + res
1685   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                   // oneshot caps + res: N/C
1686   MCFG_SN76477_VCO_MODE(1)                            // VCO mode
1687   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                  // mixer A, B, C
1688   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                  // envelope 1, 2
1689   MCFG_SN76477_ENABLE(1)                              // enable
16661690   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.5)
16671691
16681692   MCFG_SOUND_ADD("samples", SAMPLES, 0)
r32772r32773
16941718   MCFG_SPEAKER_STANDARD_MONO("mono")
16951719
16961720   MCFG_SOUND_ADD("snsnd", SN76477, 0)
1697   MCFG_SOUND_CONFIG(lupin3_sn76477_interface)
1721   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                  // noise + filter: N/C
1722   MCFG_SN76477_DECAY_RES(0)                           // decay_res: N/C
1723   MCFG_SN76477_ATTACK_PARAMS(0, RES_K(100))           // attack_decay_cap + attack_res
1724   MCFG_SN76477_AMP_RES(RES_K(56))                     // amplitude_res
1725   MCFG_SN76477_FEEDBACK_RES(RES_K(10))                // feedback_res
1726   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.1), RES_K(8.2))  // VCO volt + cap + res
1727   MCFG_SN76477_PITCH_VOLTAGE(5.0)                     // pitch_voltage
1728   MCFG_SN76477_SLF_PARAMS(CAP_U(1.0), RES_K(120))     // slf caps + res
1729   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                   // oneshot caps + res: N/C
1730   MCFG_SN76477_VCO_MODE(1)                            // VCO mode
1731   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                  // mixer A, B, C
1732   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                  // envelope 1, 2
1733   MCFG_SN76477_ENABLE(1)                              // enable
16981734   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.5)
16991735
17001736   MCFG_SOUND_ADD("samples", SAMPLES, 0)
trunk/src/mame/drivers/gp_1.c
r32772r32773
442442   MCFG_TIMER_DRIVER_ADD_PERIODIC("gp1", gp_1_state, zero_timer, attotime::from_hz(120)) // mains freq*2
443443MACHINE_CONFIG_END
444444
445static const sn76477_interface sn76477_intf =
446{
447   0,          /*  4 noise_res (N/C)        */
448   0,          /*  5 filter_res (N/C)       */
449   0,          /*  6 filter_cap (N/C)       */
450   0,          /*  7 decay_res (N/C)        */
451   0,          /*  8 attack_decay_cap (N/C) */
452   0,          /* 10 attack_res (nc)        */
453   RES_K(220), /* 11 amplitude_res          */
454   RES_K(47),  /* 12 feedback_res           */
455   0,          /* 16 vco_voltage (N/C)      */
456   CAP_U(0.1), /* 17 vco_cap                */
457   RES_K(56),  /* 18 vco_res                */
458   5.0,        /* 19 pitch_voltage          */
459   RES_K(220), /* 20 slf_res                */
460   CAP_U(1.0), /* 21 slf_cap                */
461   0,          /* 23 oneshot_cap (N/C)      */
462   0,          /* 24 oneshot_res (N/C)      */
463   0,          /* 22 vco (nc)               */
464   0,          /* 26 mixer A (nc)           */
465   0,          /* 25 mixer B (nc)           */
466   0,          /* 27 mixer C (nc)           */
467   0,          /* 1  envelope 1 (nc)        */
468   1,          /* 28 envelope 2             */
469   1           /* 9  enable (variable) 1=off */
470};
471
472445static MACHINE_CONFIG_DERIVED( gp_1s, gp_1 )
473446   MCFG_SPEAKER_STANDARD_MONO("mono")
474447   MCFG_SOUND_ADD("snsnd", SN76477, 0)
475   MCFG_SOUND_CONFIG(sn76477_intf)
448   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                // noise + filter: N/C
449   MCFG_SN76477_DECAY_RES(0)                         // decay_res: N/C
450   MCFG_SN76477_ATTACK_PARAMS(0, 0)                  // attack_decay_cap + attack_res: N/C
451   MCFG_SN76477_AMP_RES(RES_K(220))                  // amplitude_res
452   MCFG_SN76477_FEEDBACK_RES(RES_K(47))              // feedback_res
453   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.1), RES_K(56)) // VCO volt + cap + res
454   MCFG_SN76477_PITCH_VOLTAGE(5.0)                   // pitch_voltage
455   MCFG_SN76477_SLF_PARAMS(CAP_U(1.0), RES_K(220))   // slf caps + res
456   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                 // oneshot caps + res: N/C
457   MCFG_SN76477_VCO_MODE(0)                          // VCO mode: N/C
458   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                // mixer A, B, C: N/C
459   MCFG_SN76477_ENVELOPE_PARAMS(0, 1)                // envelope 1, 2
460   MCFG_SN76477_ENABLE(1)                            // enable
476461   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
477462
478463   MCFG_DEVICE_REMOVE("ppi")
trunk/src/mame/drivers/rotaryf.c
r32772r32773
4141   TIMER_DEVICE_CALLBACK_MEMBER(rotaryf_interrupt);
4242};
4343
44static const sn76477_interface rotaryf_sn76477_interface =
45{
46   0,          /*  4 noise_res (N/C)        */
47   0,          /*  5 filter_res (N/C)       */
48   0,          /*  6 filter_cap (N/C)       */
49   0,          /*  7 decay_res (N/C)        */
50   0,          /*  8 attack_decay_cap (N/C) */
51   RES_K(100), /* 10 attack_res             */
52   RES_K(56),  /* 11 amplitude_res          */
53   RES_K(10),  /* 12 feedback_res           */
54   0,          /* 16 vco_voltage (N/C)      */
55   CAP_U(0.1), /* 17 vco_cap                */
56   RES_K(8.2), /* 18 vco_res                */
57   5.0,        /* 19 pitch_voltage          */
58   RES_K(120), /* 20 slf_res                */
59   CAP_U(1.0), /* 21 slf_cap                */
60   0,          /* 23 oneshot_cap (N/C)      */
61   0,          /* 24 oneshot_res (N/C)      */
62   1,          /* 22 vco                    */
63   0,          /* 26 mixer A                */
64   0,          /* 25 mixer B                */
65   0,          /* 27 mixer C                */
66   1,          /* 1  envelope 1             */
67   0,          /* 28 envelope 2             */
68   1           /* 9  enable (variable)      */
69};
7044
71
72
7345static const char *const rotaryf_sample_names[] =
7446{
7547   "*invaders",
r32772r32773
269241   MCFG_SCREEN_UPDATE_DRIVER(rotaryf_state, screen_update_rotaryf)
270242
271243   MCFG_SPEAKER_STANDARD_MONO("mono")
244
272245   MCFG_SOUND_ADD("snsnd", SN76477, 0)
273   MCFG_SOUND_CONFIG(rotaryf_sn76477_interface)
246   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                 // noise + filter: N/C
247   MCFG_SN76477_DECAY_RES(0)                          // decay_res: N/C
248   MCFG_SN76477_ATTACK_PARAMS(0, RES_K(100))          // attack_decay_cap + attack_res
249   MCFG_SN76477_AMP_RES(RES_K(56))                    // amplitude_res
250   MCFG_SN76477_FEEDBACK_RES(RES_K(10))               // feedback_res
251   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.1), RES_K(8.2)) // VCO volt + cap + res
252   MCFG_SN76477_PITCH_VOLTAGE(5.0)                    // pitch_voltage
253   MCFG_SN76477_SLF_PARAMS(CAP_U(1.0), RES_K(120))    // slf caps + res
254   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                  // oneshot caps + res: N/C
255   MCFG_SN76477_VCO_MODE(1)                           // VCO mode
256   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                 // mixer A, B, C
257   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                 // envelope 1, 2
258   MCFG_SN76477_ENABLE(1)                             // enable
274259   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.5)
260
275261   MCFG_SOUND_ADD("samples", SAMPLES, 0)
276262   MCFG_SAMPLES_CHANNELS(6)
277263   MCFG_SAMPLES_NAMES(rotaryf_sample_names)
trunk/src/mame/drivers/malzak.c
r32772r32773
271271}
272272
273273
274static const sn76477_interface sn76477_intf =
275{
276   0,  /* N/C */       /*  4  noise_res         */
277   0,  /* N/C */       /*  5  filter_res        */
278   0,  /* N/C */       /*  6  filter_cap        */
279   0,  /* N/C */       /*  7  decay_res         */
280   0,  /* N/C */       /*  8  attack_decay_cap  */
281   RES_K(100),         /* 10  attack_res        */
282   RES_K(56),          /* 11  amplitude_res     */
283   RES_K(10),          /* 12  feedback_res      */
284   0,  /* N/C */       /* 16  vco_voltage       */
285   CAP_U(0.1),         /* 17  vco_cap           */
286   RES_K(8.2),         /* 18  vco_res           */
287   5.0,                /* 19  pitch_voltage     */
288   RES_K(120),         /* 20  slf_res           */
289   CAP_U(1.0),         /* 21  slf_cap           */
290   0,  /* N/C */       /* 23  oneshot_cap       */
291   0,  /* N/C */       /* 24  oneshot_res       */
292   0,                  /* 22    vco             */
293   1,                  /* 26 mixer A           */
294   1,                  /* 25 mixer B           */
295   1,                  /* 27 mixer C           */
296   1,                  /* 1  envelope 1        */
297   1,                  /* 28 envelope 2        */
298   1                   /* 9     enable          */
299};
300
301274READ8_MEMBER(malzak_state::videoram_r)
302275{
303276   return m_videoram[offset];
r32772r32773
359332   MCFG_SPEAKER_STANDARD_MONO("mono")
360333
361334   MCFG_SOUND_ADD("sn1", SN76477, 0)
362   MCFG_SOUND_CONFIG(sn76477_intf)
335   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                  // noise + filter: N/C
336   MCFG_SN76477_DECAY_RES(0)                           // decay_res: N/C
337   MCFG_SN76477_ATTACK_PARAMS(0, RES_K(100))           // attack_decay_cap + attack_res
338   MCFG_SN76477_AMP_RES(RES_K(56))                     // amplitude_res
339   MCFG_SN76477_FEEDBACK_RES(RES_K(10))                // feedback_res
340   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.1), RES_K(8.2))  // VCO volt + cap + res
341   MCFG_SN76477_PITCH_VOLTAGE(5.0)                     // pitch_voltage
342   MCFG_SN76477_SLF_PARAMS(CAP_U(1.0), RES_K(120))     // slf caps + res
343   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                   // oneshot caps + res: N/C
344   MCFG_SN76477_VCO_MODE(0)                            // VCO mode
345   MCFG_SN76477_MIXER_PARAMS(1, 1, 1)                  // mixer A, B, C
346   MCFG_SN76477_ENVELOPE_PARAMS(1, 1)                  // envelope 1, 2
347   MCFG_SN76477_ENABLE(1)                              // enable
363348   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25)
364349
365350   MCFG_SOUND_ADD("sn2", SN76477, 0)
366   MCFG_SOUND_CONFIG(sn76477_intf)
351   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                  // noise + filter: N/C
352   MCFG_SN76477_DECAY_RES(0)                           // decay_res: N/C
353   MCFG_SN76477_ATTACK_PARAMS(0, RES_K(100))           // attack_decay_cap + attack_res
354   MCFG_SN76477_AMP_RES(RES_K(56))                     // amplitude_res
355   MCFG_SN76477_FEEDBACK_RES(RES_K(10))                // feedback_res
356   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.1), RES_K(8.2))  // VCO volt + cap + res
357   MCFG_SN76477_PITCH_VOLTAGE(5.0)                     // pitch_voltage
358   MCFG_SN76477_SLF_PARAMS(CAP_U(1.0), RES_K(120))     // slf caps + res
359   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                   // oneshot caps + res: N/C
360   MCFG_SN76477_VCO_MODE(0)                            // VCO mode
361   MCFG_SN76477_MIXER_PARAMS(1, 1, 1)                  // mixer A, B, C
362   MCFG_SN76477_ENVELOPE_PARAMS(1, 1)                  // envelope 1, 2
363   MCFG_SN76477_ENABLE(1)                              // enable
367364   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25)
368365
369366MACHINE_CONFIG_END
trunk/src/mame/drivers/laserbat.c
r32772r32773
530530   return 0;
531531}
532532
533/* Laser Battle sound **********************************/
534533
535static const sn76477_interface laserbat_sn76477_interface =
536{
537   RES_K(47),      /*  4 noise_res         R21    47K */
538   0,              /*  5 filter_res (variable) */
539   CAP_P(1000),    /*  6 filter_cap        C21    1000 pF */
540   0,              /*  7 decay_res         */
541   0,              /*  8 attack_decay_cap  */
542   0,              /* 10 attack_res        */
543   RES_K(47),      /* 11 amplitude_res     R26    47K */
544   0,              /* 12 feedback_res (variable) */
545   5.0 * RES_K(2.2) / (RES_K(2.2) + RES_K(4.7)),   /* 16  vco_voltage       */
546   0,              /* 17 vco_cap           */
547   0,              /* 18 vco_res (variable) */
548   5.0,            /* 19 pitch_voltage     */
549   0,              /* 20 slf_res (variable) */
550   CAP_U(4.7),     /* 21 slf_cap           C24    4.7 uF */
551   0,              /* 23 oneshot_cap       */
552   0,              /* 24 oneshot_res       */
553   0,              /* 22 vco (variable) */
554   0,              /* 26 mixer A           */
555   0,              /* 25 mixer B (variable) */
556   0,              /* 27 mixer C           */
557   0,              /* 1  envelope 1        */
558   1,              /* 28 envelope 2        */
559   1               /* 9  enable (variable) */
560};
561
562534/* Cat'N Mouse sound ***********************************/
563535
564536WRITE_LINE_MEMBER(laserbat_state::zaccaria_irq0a)
r32772r32773
683655   MCFG_CPU_IO_MAP(laserbat_io_map)
684656   MCFG_CPU_VBLANK_INT_DRIVER("screen", laserbat_state,  laserbat_interrupt)
685657
686
687658   /* video hardware */
688659   MCFG_SCREEN_ADD("screen", RASTER)
689660   MCFG_SCREEN_REFRESH_RATE(50)
r32772r32773
712683   MCFG_SPEAKER_STANDARD_MONO("mono")
713684
714685   MCFG_SOUND_ADD("snsnd", SN76477, 0) // output not connected
715   MCFG_SOUND_CONFIG(laserbat_sn76477_interface)
686   MCFG_SN76477_NOISE_PARAMS(RES_K(47), 0, CAP_P(1000)) // noise + filter: R21 47K + N/C + C21 1000 pF
687   MCFG_SN76477_DECAY_RES(0)                            // decay_res
688   MCFG_SN76477_ATTACK_PARAMS(0, 0)                     // attack_decay_cap + attack_res
689   MCFG_SN76477_AMP_RES(RES_K(47))                      // amplitude_res: R26 47K
690   MCFG_SN76477_FEEDBACK_RES(RES_K(200))                // feedback_res
691   MCFG_SN76477_VCO_PARAMS(5.0 * RES_K(2.2) / (RES_K(2.2) + RES_K(4.7)), 0, 0) // VCO volt + cap + res
692   MCFG_SN76477_PITCH_VOLTAGE(5.0)                      // pitch_voltage
693   MCFG_SN76477_SLF_PARAMS(CAP_U(4.7), 0)               // slf caps + res: C24 4.7 uF + (variable)
694   MCFG_SN76477_ONESHOT_PARAMS(0,0)                     // oneshot caps + res
695   MCFG_SN76477_VCO_MODE(0)                             // VCO mode
696   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                   // mixer A, B, C
697   MCFG_SN76477_ENVELOPE_PARAMS(0, 1)                   // envelope 1, 2
698   MCFG_SN76477_ENABLE(1)                               // enable
716699
717700   MCFG_TMS3615_ADD("tms1", 4000000/8/2) // 250 kHz, from second chip's clock out
718701   MCFG_SOUND_ROUTE(TMS3615_FOOTAGE_8, "mono", 1.0)
trunk/src/mame/drivers/dai3wksi.c
r32772r32773
321321   m_ic81->vco_w((~data >> 3) & 0x01);       /* player shoot vco control */
322322}
323323
324
325/* Invader Hit */
326static const sn76477_interface dai3wksi_sn76477_ic76 =
327{
328   0,              /*  4 noise_res (N/C)        */
329   0,              /*  5 filter_res (N/C)       */
330   0,              /*  6 filter_cap (N/C)       */
331   RES_K(4.7),     /*  7 decay_res              */
332   CAP_U(0.1),     /*  8 attack_decay_cap       */
333   RES_K(4.7),     /* 10 attack_res             */
334   RES_K(150),     /* 11 amplitude_res          */
335   RES_K(47),      /* 12 feedback_res           */
336   0,              /* 16 vco_voltage (variable) */
337   CAP_U(0.022),   /* 17 vco_cap                */
338   RES_K(33),      /* 18 vco_res                */
339   5.0,            /* 19 pitch_voltage          */
340   0,              /* 20 slf_res (N/C)          */
341   0,              /* 21 slf_cap (N/C)          */
342   0,              /* 23 oneshot_cap (N/C)      */
343   0,              /* 24 oneshot_res (N/C)      */
344   0,              /* 22 vco                    */
345   0,              /* 26 mixer A                */
346   0,              /* 25 mixer B                */
347   0,              /* 27 mixer C                */
348   0,              /* 1  envelope 1             */
349   0,              /* 28 envelope 2             */
350   0               /* 9  enable                 */
351};
352
353
354/* Ship Movement */
355static const sn76477_interface dai3wksi_sn76477_ic77 =
356{
357   0,              /*  4 noise_res (N/C)      */
358   0,              /*  5 filter_res (N/C)     */
359   0,              /*  6 filter_cap (N/C)     */
360   RES_K(4.7),     /*  7 decay_res            */
361   CAP_U(0.1),     /*  8 attack_decay_cap     */
362   RES_K(4.7),     /* 10 attack_res           */
363   RES_K(150),     /* 11 amplitude_res        */
364   RES_K(47),      /* 12 feedback_res         */
365   0,              /* 16 vco_voltage (N/C)    */
366   0,              /* 17 vco_cap (N/C)        */
367   0,              /* 18 vco_res (N/C)        */
368   0,              /* 19 pitch_voltage        */
369   RES_K(200),     /* 20 slf_res              */
370   CAP_U(0.0022),  /* 21 slf_cap              */
371   CAP_U(10),      /* 23 oneshot_cap          */
372   RES_K(4.7),     /* 24 oneshot_res          */
373   5,              /* 22 vco                  */
374   5,              /* 26 mixer A              */
375   0,              /* 25 mixer B              */
376   0,              /* 27 mixer C              */
377   5,              /* 1  envelope 1           */
378   0,              /* 28 envelope 2           */
379   1               /* 9  enable (variable)    */
380};
381
382
383/* Danger */
384static const sn76477_interface dai3wksi_sn76477_ic78 =
385{
386   RES_K(47),      /*  4 noise_res            */
387   0,              /*  5 filter_res (N/C)     */
388   0,              /*  6 filter_cap (N/C)     */
389   RES_K(200),     /*  7 decay_res            */
390   CAP_U(0.1),     /*  8 attack_decay_cap     */
391   RES_K(4.7),     /* 10 attack_res           */
392   RES_K(150),     /* 11 amplitude_res        */
393   RES_K(47),      /* 12 feedback_res         */
394   0,              /* 16 vco_voltage (N/C)    */
395   CAP_U(0.47),    /* 17 vco_cap              */
396   RES_K(75),      /* 18 vco_res              */
397   5.0,            /* 19 pitch_voltage        */
398   RES_K(47),      /* 20 slf_res              */
399   CAP_N(1),       /* 21 slf_cap              */
400   CAP_U(10),      /* 23 oneshot_cap          */
401   RES_K(22),      /* 24 oneshot_res          */
402   5,              /* 22 vco                  */
403   0,              /* 26 mixer A              */
404   0,              /* 25 mixer B              */
405   0,              /* 27 mixer C              */
406   5,              /* 1  envelope 1           */
407   0,              /* 28 envelope 2           */
408   1               /* 9  enable (variable)    */
409};
410
411
412/* Invader Marching Noise */
413static const sn76477_interface dai3wksi_sn76477_ic79 =
414{
415   0,              /*  4 noise_res (N/C)      */
416   0,              /*  5 filter_res (N/C)     */
417   0,              /*  6 filter_cap (N/C)     */
418   RES_K(56),      /*  7 decay_res            */
419   CAP_U(0.1),     /*  8 attack_decay_cap     */
420   RES_K(4.7),     /* 10 attack_res           */
421   RES_K(150),     /* 11 amplitude_res        */
422   RES_K(47),      /* 12 feedback_res         */
423   0,              /* 16 vco_voltage (N/C)    */
424   CAP_U(0.01),    /* 17 vco_cap              */
425   RES_K(100),     /* 18 vco_res              */
426   5.0,            /* 19 pitch_voltage        */
427   RES_K(150),     /* 20 slf_res              */
428   CAP_N(1),       /* 21 slf_cap              */
429   CAP_U(10),      /* 23 oneshot_cap          */
430   RES_K(22),      /* 24 oneshot_res          */
431   5,              /* 22 vco                  */
432   0,              /* 26 mixer A              */
433   0,              /* 25 mixer B              */
434   0,              /* 27 mixer C              */
435   5,              /* 1  envelope 1 (variable)*/
436   5,              /* 28 envelope 2           */
437   1               /* 9  enable (variable)    */
438};
439
440
441/* Big Planet Explosion */
442static const sn76477_interface dai3wksi_sn76477_ic80 =
443{
444   RES_K(47),      /*  4 noise_res            */
445   RES_K(330),     /*  5 filter_res           */
446   CAP_P(470),     /*  6 filter_cap           */
447   RES_M(2),       /*  7 decay_res            */
448   CAP_U(1),       /*  8 attack_decay_cap     */
449   RES_K(4.7),     /* 10 attack_res           */
450   RES_K(150),     /* 11 amplitude_res        */
451   RES_K(47),      /* 12 feedback_res         */
452   0,              /* 16 vco_voltage (N/C)    */
453   0,              /* 17 vco_cap (N/C)        */
454   0,              /* 18 vco_res (N/C)        */
455   5.0,            /* 19 pitch_voltage        */
456   0,              /* 20 slf_res (N/C)        */
457   0,              /* 21 slf_cap (N/C)        */
458   CAP_U(10),      /* 23 oneshot_cap          */
459   RES_K(55),      /* 24 oneshot_res          */
460   5,              /* 22 vco                  */
461   0,              /* 26 mixer A              */
462   5,              /* 25 mixer B              */
463   0,              /* 27 mixer C              */
464   5,              /* 1  envelope 1           */
465   0,              /* 28 envelope 2           */
466   1               /* 9  enable (variable)    */
467};
468
469
470/* Plane Shoot noise */
471static const sn76477_interface dai3wksi_sn76477_ic81 =
472{
473   0,              /*  4 noise_res (N/C)      */
474   0,              /*  5 filter_res (N/C)     */
475   0,              /*  6 filter_cap (N/C)     */
476   RES_K(200),     /*  7 decay_res            */
477   CAP_U(10),      /*  8 attack_decay_cap     */
478   RES_K(4.7),     /* 10 attack_res           */
479   RES_K(150),     /* 11 amplitude_res        */
480   RES_K(47),      /* 12 feedback_res         */
481   2.5,            /* 16 vco_voltage    */
482   CAP_U(0.01),    /* 17 vco_cap              */
483   RES_K(100),     /* 18 vco_res              */
484   5.0,            /* 19 pitch_voltage        */
485   RES_K(100),     /* 20 slf_res              */
486   CAP_N(0.47),    /* 21 slf_cap              */
487   CAP_U(10),      /* 23 oneshot_cap          */
488   RES_K(6.8),     /* 24 oneshot_res          */
489   0,              /* 22 vco (variable)       */
490   0,              /* 26 mixer A              */
491   5,              /* 25 mixer B              */
492   5,              /* 27 mixer C              */
493   5,              /* 1  envelope 1           */
494   0,              /* 28 envelope 2           */
495   1               /* 9  enable (variable)    */
496};
497
498324#endif
499325
500326
501
502327/*************************************
503328 *
504329 *  Memory handlers
r32772r32773
609434   MCFG_SAMPLES_NAMES(dai3wksi_sample_names)
610435   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
611436#else
437   // Invader Hit
612438   MCFG_SOUND_ADD("ic76", SN76477, 0)
613   MCFG_SOUND_CONFIG(dai3wksi_sn76477_ic76)
439   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                   // noise + filter: N/C
440   MCFG_SN76477_DECAY_RES(RES_K(4.7))                   // decay_res
441   MCFG_SN76477_ATTACK_PARAMS(CAP_U(0.1), RES_K(4.7))   // attack_decay_cap + attack_res
442   MCFG_SN76477_AMP_RES(RES_K(150))                     // amplitude_res
443   MCFG_SN76477_FEEDBACK_RES(RES_K(47))                 // feedback_res
444   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.022), RES_K(33))  // VCO volt + cap + res
445   MCFG_SN76477_PITCH_VOLTAGE(5.0)                      // pitch_voltage
446   MCFG_SN76477_SLF_PARAMS(0, 0)                        // slf caps + res: N/C
447   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                    // oneshot caps + res: N/C
448   MCFG_SN76477_VCO_MODE(0)                             // VCO mode
449   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                   // mixer A, B, C
450   MCFG_SN76477_ENVELOPE_PARAMS(0, 0)                   // envelope 1, 2
451   MCFG_SN76477_ENABLE(0)                               // enable
614452   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.4)
615453
454   // Ship Movement
616455   MCFG_SOUND_ADD("ic77", SN76477, 0)
617   MCFG_SOUND_CONFIG(dai3wksi_sn76477_ic77)
456   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                   // noise + filter: N/C
457   MCFG_SN76477_DECAY_RES(RES_K(4.7))                   // decay_res
458   MCFG_SN76477_ATTACK_PARAMS(CAP_U(0.1), RES_K(4.7))   // attack_decay_cap + attack_res
459   MCFG_SN76477_AMP_RES(RES_K(150))                     // amplitude_res
460   MCFG_SN76477_FEEDBACK_RES(RES_K(47))                 // feedback_res
461   MCFG_SN76477_VCO_PARAMS(0, 0, 0)                     // VCO volt + cap + res: N/C
462   MCFG_SN76477_PITCH_VOLTAGE(0)                        // pitch_voltage
463   MCFG_SN76477_SLF_PARAMS(CAP_U(0.0022), RES_K(200))   // slf caps + res
464   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(10), RES_K(4.7))   // oneshot caps + res
465   MCFG_SN76477_VCO_MODE(5)                             // VCO mode
466   MCFG_SN76477_MIXER_PARAMS(5, 0, 0)                   // mixer A, B, C
467   MCFG_SN76477_ENVELOPE_PARAMS(5, 0)                   // envelope 1, 2
468   MCFG_SN76477_ENABLE(1)                               // enable
618469   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.4)
619470
471   // Danger
620472   MCFG_SOUND_ADD("ic78", SN76477, 0)
621   MCFG_SOUND_CONFIG(dai3wksi_sn76477_ic78)
473   MCFG_SN76477_NOISE_PARAMS(RES_K(47), 0, 0)           // noise + filter
474   MCFG_SN76477_DECAY_RES(RES_K(200))                   // decay_res
475   MCFG_SN76477_ATTACK_PARAMS(CAP_U(0.1), RES_K(4.7))   // attack_decay_cap + attack_res
476   MCFG_SN76477_AMP_RES(RES_K(150))                     // amplitude_res
477   MCFG_SN76477_FEEDBACK_RES(RES_K(47))                 // feedback_res
478   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.47), RES_K(75))   // VCO volt + cap + res
479   MCFG_SN76477_PITCH_VOLTAGE(5.0)                      // pitch_voltage
480   MCFG_SN76477_SLF_PARAMS(CAP_N(1), RES_K(47))         // slf caps + res
481   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(10), RES_K(22))    // oneshot caps + res
482   MCFG_SN76477_VCO_MODE(5)                             // VCO mode
483   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                   // mixer A, B, C
484   MCFG_SN76477_ENVELOPE_PARAMS(5, 0)                   // envelope 1, 2
485   MCFG_SN76477_ENABLE(1)                               // enable
622486   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.4)
623487
488   // Invader Marching Noise
624489   MCFG_SOUND_ADD("ic79", SN76477, 0)
625   MCFG_SOUND_CONFIG(dai3wksi_sn76477_ic79)
490   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                   // noise + filter: N/C
491   MCFG_SN76477_DECAY_RES(RES_K(56))                    // decay_res
492   MCFG_SN76477_ATTACK_PARAMS(CAP_U(0.1), RES_K(4.7))   // attack_decay_cap + attack_res
493   MCFG_SN76477_AMP_RES(RES_K(150))                     // amplitude_res
494   MCFG_SN76477_FEEDBACK_RES(RES_K(47))                 // feedback_res
495   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.01), RES_K(100))  // VCO volt + cap + res
496   MCFG_SN76477_PITCH_VOLTAGE(5.0)                      // pitch_voltage
497   MCFG_SN76477_SLF_PARAMS(CAP_N(1), RES_K(150))        // slf caps + res
498   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(10), RES_K(22))    // oneshot caps + res
499   MCFG_SN76477_VCO_MODE(5)                             // VCO mode
500   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                   // mixer A, B, C
501   MCFG_SN76477_ENVELOPE_PARAMS(5, 5)                   // envelope 1, 2
502   MCFG_SN76477_ENABLE(1)                               // enable
626503   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.4)
627504
505   // Big Planet Explosion
628506   MCFG_SOUND_ADD("ic80", SN76477, 0)
629   MCFG_SOUND_CONFIG(dai3wksi_sn76477_ic80)
507   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_K(330), CAP_P(470)) // noise + filter
508   MCFG_SN76477_DECAY_RES(RES_M(2))                     // decay_res
509   MCFG_SN76477_ATTACK_PARAMS(CAP_U(1.0), RES_K(4.7))   // attack_decay_cap + attack_res
510   MCFG_SN76477_AMP_RES(RES_K(150))                     // amplitude_res
511   MCFG_SN76477_FEEDBACK_RES(RES_K(47))                 // feedback_res
512   MCFG_SN76477_VCO_PARAMS(0, 0, 0)                     // VCO volt + cap + res: N/C
513   MCFG_SN76477_PITCH_VOLTAGE(5.0)                      // pitch_voltage
514   MCFG_SN76477_SLF_PARAMS(0, 0)                        // slf caps + res: N/C
515   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(10), RES_K(55))    // oneshot caps + res
516   MCFG_SN76477_VCO_MODE(5)                             // VCO mode
517   MCFG_SN76477_MIXER_PARAMS(0, 5, 0)                   // mixer A, B, C
518   MCFG_SN76477_ENVELOPE_PARAMS(5, 0)                   // envelope 1, 2
519   MCFG_SN76477_ENABLE(1)                               // enable
630520   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.4)
631521
522   // Plane Shoot noise
632523   MCFG_SOUND_ADD("ic81", SN76477, 0)
633   MCFG_SOUND_CONFIG(dai3wksi_sn76477_ic81)
524   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                    // noise + filter: N/C
525   MCFG_SN76477_DECAY_RES(RES_K(200))                    // decay_res
526   MCFG_SN76477_ATTACK_PARAMS(CAP_U(10), RES_K(4.7))     // attack_decay_cap + attack_res
527   MCFG_SN76477_AMP_RES(RES_K(150))                      // amplitude_res
528   MCFG_SN76477_FEEDBACK_RES(RES_K(47))                  // feedback_res
529   MCFG_SN76477_VCO_PARAMS(2.5, CAP_U(0.01), RES_K(100)) // VCO volt + cap + res
530   MCFG_SN76477_PITCH_VOLTAGE(5.0)                       // pitch_voltage
531   MCFG_SN76477_SLF_PARAMS(CAP_N(0.47), RES_K(100))      // slf caps + res
532   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(10), RES_K(6.8))    // oneshot caps + res
533   MCFG_SN76477_VCO_MODE(0)                              // VCO mode
534   MCFG_SN76477_MIXER_PARAMS(0, 5, 5)                    // mixer A, B, C
535   MCFG_SN76477_ENVELOPE_PARAMS(5, 0)                    // envelope 1, 2
536   MCFG_SN76477_ENABLE(1)                                // enable
634537   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.4)
635538#endif
636539MACHINE_CONFIG_END
trunk/src/mame/drivers/route16.c
r32772r32773
553553INPUT_PORTS_END
554554
555555
556static const sn76477_interface sn76477_intf =
557{
558   RES_K(47),      /*  4  noise_res                    */
559   RES_K(150),     /*  5  filter_res                   */
560   CAP_U(0.001),   /*  6  filter_cap                   */
561   RES_M(3.3),     /*  7  decay_res                    */
562   CAP_U(1),       /*  8  attack_decay_cap             */
563   RES_K(4.7),     /* 10  attack_res                   */
564   RES_K(200),     /* 11  amplitude_res                */
565   RES_K(55),      /* 12  feedback_res (5k + 100k pot) */
566   5.0*2/(2+10),   /* 16  vco_voltage                  */
567   CAP_U(0.022),   /* 17  vco_cap                      */
568   RES_K(100),     /* 18  vco_res                      */
569   5.0,            /* 19  pitch_voltage                */
570   RES_K(75),      /* 20  slf_res                      */
571   CAP_U(1.0),     /* 21  slf_cap                      */
572   CAP_U(2.2),     /* 23  oneshot_cap                  */
573   RES_K(4.7),     /* 24  oneshot_res                  */
574   0,              /* 22  vco (variable)               */
575   0,              /* 26  mixer A (variable)           */
576   0,              /* 25  mixer B (variable)           */
577   0,              /* 27  mixer C (variable)           */
578   0,              /* 1   envelope 1 (variable)        */
579   0,              /* 28  envelope 2 (variable)        */
580   1               /* 9   enable (variable)            */
581};
582
583
584556static MACHINE_CONFIG_START( route16, route16_state )
585557
586558   /* basic machine hardware */
r32772r32773
633605   MCFG_AY8910_PORT_A_WRITE_CB(WRITE8(route16_state, stratvox_sn76477_w))  /* SN76477 commands (not used in Route 16?) */
634606
635607   MCFG_SOUND_ADD("snsnd", SN76477, 0)
636   MCFG_SOUND_CONFIG(sn76477_intf)
608   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_K(150), CAP_U(0.001)) // noise + filter
609   MCFG_SN76477_DECAY_RES(RES_M(3.3))                  // decay_res
610   MCFG_SN76477_ATTACK_PARAMS(CAP_U(1), RES_K(4.7))    // attack_decay_cap + attack_res
611   MCFG_SN76477_AMP_RES(RES_K(200))                    // amplitude_res
612   MCFG_SN76477_FEEDBACK_RES(RES_K(55))                // feedback_res
613   MCFG_SN76477_VCO_PARAMS(5.0 * 2/ (2 + 10), CAP_U(0.022), RES_K(100)) // VCO volt + cap + res
614   MCFG_SN76477_PITCH_VOLTAGE(5.0)                     // pitch_voltage
615   MCFG_SN76477_SLF_PARAMS(CAP_U(1.0), RES_K(75))      // slf caps + res
616   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(2.2), RES_K(4.7)) // oneshot caps + res
617   MCFG_SN76477_VCO_MODE(0)                            // VCO mode
618   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                  // mixer A, B, C
619   MCFG_SN76477_ENVELOPE_PARAMS(0, 0)                  // envelope 1, 2
620   MCFG_SN76477_ENABLE(1)                              // enable
637621   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
638622
639623   MCFG_DAC_ADD("dac")
trunk/src/mame/drivers/snk6502.c
r32772r32773
834834   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.12)
835835
836836   MCFG_SOUND_ADD("sn76477.1", SN76477, 0)
837   MCFG_SOUND_CONFIG(sasuke_sn76477_intf_1)
837   // ic48     GND: 2,22,26,27,28  +5V: 1,15,25
838   MCFG_SN76477_NOISE_PARAMS(RES_K(470), RES_K(150), CAP_P(4700)) // noise + filter
839   MCFG_SN76477_DECAY_RES(RES_K(22))                    // decay_res
840   MCFG_SN76477_ATTACK_PARAMS(CAP_U(10), RES_K(10))     // attack_decay_cap + attack_res
841   MCFG_SN76477_AMP_RES(RES_K(100))                     // amplitude_res
842   MCFG_SN76477_FEEDBACK_RES(RES_K(47))                 // feedback_res
843   MCFG_SN76477_VCO_PARAMS(0, 0, 0)                     // VCO volt + cap + res: N/C
844   MCFG_SN76477_PITCH_VOLTAGE(0)                        // pitch_voltage: N/C
845   MCFG_SN76477_SLF_PARAMS(0, RES_K(10))                // slf caps + res
846   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(2.2), RES_K(100))  // oneshot caps + res
847   MCFG_SN76477_VCO_MODE(0)                             // VCO mode
848   MCFG_SN76477_MIXER_PARAMS(0, 1, 0)                   // mixer A, B, C
849   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                   // envelope 1, 2
850   MCFG_SN76477_ENABLE(1)                               // enable
838851   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
839852
840853   MCFG_SOUND_ADD("sn76477.2", SN76477, 0)
841   MCFG_SOUND_CONFIG(sasuke_sn76477_intf_2)
854   // ic51     GND: 2,26,27        +5V: 1,15,22,25,28
855   MCFG_SN76477_NOISE_PARAMS(RES_K(340), RES_K(47), CAP_P(100)) // noise + filter
856   MCFG_SN76477_DECAY_RES(RES_K(470))                   // decay_res
857   MCFG_SN76477_ATTACK_PARAMS(CAP_U(4.7), RES_K(10))    // attack_decay_cap + attack_res
858   MCFG_SN76477_AMP_RES(RES_K(100))                     // amplitude_res
859   MCFG_SN76477_FEEDBACK_RES(RES_K(47))                 // feedback_res
860   MCFG_SN76477_VCO_PARAMS(0, CAP_P(220), RES_K(1000))  // VCO volt + cap + res
861   MCFG_SN76477_PITCH_VOLTAGE(0)                        // pitch_voltage: N/C
862   MCFG_SN76477_SLF_PARAMS(0, RES_K(220))               // slf caps + res
863   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(22), RES_K(47))    // oneshot caps + res
864   MCFG_SN76477_VCO_MODE(1)                             // VCO mode
865   MCFG_SN76477_MIXER_PARAMS(0, 1, 0)                   // mixer A, B, C
866   MCFG_SN76477_ENVELOPE_PARAMS(1, 1)                   // envelope 1, 2
867   MCFG_SN76477_ENABLE(1)                               // enable
842868   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
843869
844870   MCFG_SOUND_ADD("sn76477.3", SN76477, 0)
845   MCFG_SOUND_CONFIG(sasuke_sn76477_intf_3)
871   // ic52     GND: 2,22,27,28     +5V: 1,15,25,26
872   MCFG_SN76477_NOISE_PARAMS(RES_K(330), RES_K(47), CAP_P(100)) // noise + filter
873   MCFG_SN76477_DECAY_RES(RES_K(1))                     // decay_res
874   MCFG_SN76477_ATTACK_PARAMS(0, RES_K(1))              // attack_decay_cap + attack_res
875   MCFG_SN76477_AMP_RES(RES_K(100))                     // amplitude_res
876   MCFG_SN76477_FEEDBACK_RES(RES_K(47))                 // feedback_res
877   MCFG_SN76477_VCO_PARAMS(0, CAP_P(1000), RES_K(1000)) // VCO volt + cap + res
878   MCFG_SN76477_PITCH_VOLTAGE(0)                        // pitch_voltage: N/C
879   MCFG_SN76477_SLF_PARAMS(CAP_U(1), RES_K(10))         // slf caps + res
880   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(2.2), RES_K(150))  // oneshot caps + res
881   MCFG_SN76477_VCO_MODE(0)                             // VCO mode
882   MCFG_SN76477_MIXER_PARAMS(1, 1, 0)                   // mixer A, B, C
883   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                   // envelope 1, 2
884   MCFG_SN76477_ENABLE(1)                               // enable
846885   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
847886MACHINE_CONFIG_END
848887
r32772r32773
863902   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25)
864903
865904   MCFG_SOUND_REPLACE("sn76477.1", SN76477, 0)
866   MCFG_SOUND_CONFIG(satansat_sn76477_intf)
905   // ???      GND: 2,26,27        +5V: 15,25
906   MCFG_SN76477_NOISE_PARAMS(RES_K(470), RES_M(1.5), CAP_P(220)) // noise + filter
907   MCFG_SN76477_DECAY_RES(0)                            // decay_res
908   MCFG_SN76477_ATTACK_PARAMS(0, 0)                     // attack_decay_cap + attack_res
909   MCFG_SN76477_AMP_RES(RES_K(47))                      // amplitude_res
910   MCFG_SN76477_FEEDBACK_RES(RES_K(47))                 // feedback_res
911   MCFG_SN76477_VCO_PARAMS(0, 0, 0)                     // VCO volt + cap + res
912   MCFG_SN76477_PITCH_VOLTAGE(0)                        // pitch_voltage
913   MCFG_SN76477_SLF_PARAMS(0, 0)                        // slf caps + res
914   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                    // oneshot caps + res
915   MCFG_SN76477_VCO_MODE(0)                             // VCO mode
916   MCFG_SN76477_MIXER_PARAMS(0, 1, 0)                   // mixer A, B, C
917   MCFG_SN76477_ENVELOPE_PARAMS(1, 1)                   // envelope 1, 2
918   MCFG_SN76477_ENABLE(1)                               // enable
867919   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
868920
869921   MCFG_DEVICE_REMOVE("sn76477.2")
r32772r32773
912964   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25)
913965
914966   MCFG_SOUND_ADD("sn76477.1", SN76477, 0)
915   MCFG_SOUND_CONFIG(vanguard_sn76477_intf_1)
967   // SHOT A   GND: 2,9,26,27  +5V: 15,25
968   MCFG_SN76477_NOISE_PARAMS(RES_K(470), RES_M(1.5), CAP_P(220)) // noise + filter
969   MCFG_SN76477_DECAY_RES(0)                            // decay_res
970   MCFG_SN76477_ATTACK_PARAMS(0, 0)                     // attack_decay_cap + attack_res
971   MCFG_SN76477_AMP_RES(RES_K(47))                      // amplitude_res
972   MCFG_SN76477_FEEDBACK_RES(RES_K(4.7))                // feedback_res
973   MCFG_SN76477_VCO_PARAMS(0, 0, 0)                     // VCO volt + cap + res
974   MCFG_SN76477_PITCH_VOLTAGE(0)                        // pitch_voltage
975   MCFG_SN76477_SLF_PARAMS(0, 0)                        // slf caps + res
976   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                    // oneshot caps + res
977   MCFG_SN76477_VCO_MODE(0)                             // VCO mode
978   MCFG_SN76477_MIXER_PARAMS(0, 1, 0)                   // mixer A, B, C
979   MCFG_SN76477_ENVELOPE_PARAMS(1, 1)                   // envelope 1, 2
980   MCFG_SN76477_ENABLE(1)                               // enable
916981   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
917982
918983   MCFG_SOUND_ADD("sn76477.2", SN76477, 0)
919   MCFG_SOUND_CONFIG(vanguard_sn76477_intf_2)
984   // SHOT B   GND: 1,2,26,27  +5V: 15,25,28
985   MCFG_SN76477_NOISE_PARAMS(RES_K(10), RES_K(30), 0)   // noise + filter
986   MCFG_SN76477_DECAY_RES(0)                            // decay_res
987   MCFG_SN76477_ATTACK_PARAMS(0, 0)                     // attack_decay_cap + attack_res
988   MCFG_SN76477_AMP_RES(RES_K(47))                      // amplitude_res
989   MCFG_SN76477_FEEDBACK_RES(RES_K(4.7))                // feedback_res
990   MCFG_SN76477_VCO_PARAMS(0, 0, 0)                     // VCO volt + cap + res
991   MCFG_SN76477_PITCH_VOLTAGE(0)                        // pitch_voltage
992   MCFG_SN76477_SLF_PARAMS(0, 0)                        // slf caps + res
993   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                    // oneshot caps + res
994   MCFG_SN76477_VCO_MODE(0)                             // VCO mode
995   MCFG_SN76477_MIXER_PARAMS(0, 1, 0)                   // mixer A, B, C
996   MCFG_SN76477_ENVELOPE_PARAMS(0, 1)                   // envelope 1, 2
997   MCFG_SN76477_ENABLE(1)                               // enable
920998   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25)
921999MACHINE_CONFIG_END
9221000
r32772r32773
9321010   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.5)
9331011
9341012   MCFG_SOUND_REPLACE("sn76477.1", SN76477, 0)
935   MCFG_SOUND_CONFIG(fantasy_sn76477_intf)
1013   // BOMB     GND:    2,9,26,27       +5V: 15,25
1014   MCFG_SN76477_NOISE_PARAMS(RES_K(470), RES_M(1.5), CAP_P(220)) // noise + filter
1015   MCFG_SN76477_DECAY_RES(0)                            // decay_res
1016   MCFG_SN76477_ATTACK_PARAMS(0, 0)                     // attack_decay_cap + attack_res
1017   MCFG_SN76477_AMP_RES(RES_K(470))                      // amplitude_res
1018   MCFG_SN76477_FEEDBACK_RES(RES_K(4.7))                // feedback_res
1019   MCFG_SN76477_VCO_PARAMS(0, 0, 0)                     // VCO volt + cap + res
1020   MCFG_SN76477_PITCH_VOLTAGE(0)                        // pitch_voltage
1021   MCFG_SN76477_SLF_PARAMS(0, 0)                        // slf caps + res
1022   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                    // oneshot caps + res
1023   MCFG_SN76477_VCO_MODE(0)                             // VCO mode
1024   MCFG_SN76477_MIXER_PARAMS(0, 1, 0)                   // mixer A, B, C
1025   // schematic does not show pin 1 grounded, but it must be.
1026   // otherwise it is using the VCO for the envelope, but the VCO is not hooked up
1027   MCFG_SN76477_ENVELOPE_PARAMS(0, 1)                   // envelope 1, 2
1028   MCFG_SN76477_ENABLE(0)                               // enable
9361029   MCFG_SOUND_ROUTE_EX(0, "discrete", 1.0, 0)
9371030
9381031   MCFG_SOUND_ADD("discrete", DISCRETE, 0)
trunk/src/mame/drivers/toratora.c
r32772r32773
192192 *
193193 *************************************/
194194
195static const sn76477_interface sn76477_intf =
196{
197   RES_K(47),  /*  4 noise_res                */
198//  RES_K(120), /*  5 filter_res               */
199   RES_M(1.2), /*  5 filter_res               */
200   CAP_P(470), /*  6 filter_cap               */
201   RES_K(680), /*  7 decay_res                */
202   CAP_U(0.2), /*  8 attack_decay_cap         */
203   RES_K(3.3), /* 10 attack_res               */
204   0,          /* 11 amplitude_res (variable) */
205   RES_K(50),  /* 12 feedback_res             */
206   0,          /* 16 vco_voltage (variable)   */
207   CAP_U(0.1), /* 17 vco_cap                  */
208   RES_K(51),  /* 18 vco_res                  */
209   5.0,        /* 19 pitch_voltage (N/C)      */
210   RES_K(470), /* 20 slf_res                  */
211   CAP_U(0.1), /* 21 slf_cap                  */
212   CAP_U(0.1), /* 23 oneshot_cap              */
213   RES_M(1),   /* 24 oneshot_res              */
214   0,          /* 22 vco (variable)           */
215   0,          /* 26 mixer A (variable)       */
216   0,          /* 25 mixer B (variable)       */
217   0,          /* 27 mixer C (variable)       */
218   0,          /* 1  envelope 1 (variable)    */
219   0,          /* 28 envelope 2 (variable)    */
220   1           /* 9  enable (variable)        */
221};
222195
223
224196WRITE8_MEMBER(toratora_state::sn1_port_a_u2_u3_w)
225197{
226198   m_sn1->vco_voltage_w(2.35 * (data & 0x7f) / 128.0);
r32772r32773
415387   MCFG_SPEAKER_STANDARD_MONO("mono")
416388
417389   MCFG_SOUND_ADD("sn1", SN76477, 0)
418   MCFG_SOUND_CONFIG(sn76477_intf)
390   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_M(1.2) /* RES_K(120) */, CAP_P(470)) // noise + filter
391   MCFG_SN76477_DECAY_RES(RES_K(680))                   // decay_res
392   MCFG_SN76477_ATTACK_PARAMS(CAP_U(0.2),  RES_K(3.3))  // attack_decay_cap + attack_res
393   MCFG_SN76477_AMP_RES(0)                              // amplitude_res
394   MCFG_SN76477_FEEDBACK_RES(RES_K(50))                 // feedback_res
395   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.1), RES_K(51))    // VCO volt + cap + res
396   MCFG_SN76477_PITCH_VOLTAGE(5.0)                      // pitch_voltage
397   MCFG_SN76477_SLF_PARAMS(CAP_U(0.1), RES_K(470))      // slf caps + res
398   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(0.1), RES_M(1))    // oneshot caps + res
399   MCFG_SN76477_VCO_MODE(0)                             // VCO mode
400   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                   // mixer A, B, C
401   MCFG_SN76477_ENVELOPE_PARAMS(0, 0)                   // envelope 1, 2
402   MCFG_SN76477_ENABLE(1)                               // enable
419403   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
420404
421405   MCFG_SOUND_ADD("sn2", SN76477, 0)
422   MCFG_SOUND_CONFIG(sn76477_intf)
406   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_M(1.2) /* RES_K(120) */, CAP_P(470)) // noise + filter
407   MCFG_SN76477_DECAY_RES(RES_K(680))                   // decay_res
408   MCFG_SN76477_ATTACK_PARAMS(CAP_U(0.2),  RES_K(3.3))  // attack_decay_cap + attack_res
409   MCFG_SN76477_AMP_RES(0)                              // amplitude_res
410   MCFG_SN76477_FEEDBACK_RES(RES_K(50))                 // feedback_res
411   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.1), RES_K(51))    // VCO volt + cap + res
412   MCFG_SN76477_PITCH_VOLTAGE(5.0)                      // pitch_voltage
413   MCFG_SN76477_SLF_PARAMS(CAP_U(0.1), RES_K(470))      // slf caps + res
414   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(0.1), RES_M(1))    // oneshot caps + res
415   MCFG_SN76477_VCO_MODE(0)                             // VCO mode
416   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                   // mixer A, B, C
417   MCFG_SN76477_ENVELOPE_PARAMS(0, 0)                   // envelope 1, 2
418   MCFG_SN76477_ENABLE(1)                               // enable
423419   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
424420
425421MACHINE_CONFIG_END
trunk/src/mame/drivers/spectra.c
r32772r32773
218218      m_out_offs = 0xff;
219219}
220220
221static const sn76477_interface sn76477_intf =
222{
223   RES_M(1000),    /*  4  noise_res        */
224   RES_M(1000),    /*  5  filter_res       */
225   CAP_N(0),   /*  6  filter_cap       */
226   RES_K(470), /*  7  decay_res        */
227   CAP_N(1),   /*  8  attack_decay_cap */
228   RES_K(22),  /* 10  attack_res       */
229   RES_K(100), /* 11  amplitude_res    */
230   RES_K(52),  /* 12  feedback_res     */
231   5.0,    /* 16  vco_voltage      */
232   CAP_U(0.01),    /* 17  vco_cap          */
233   RES_K(390), /* 18  vco_res          */
234   0.0,  /* 19  pitch_voltage  */
235   RES_M(1),   /* 20  slf_res          */
236   CAP_U(0.1), /* 21  slf_cap          */
237   CAP_U(0.47),    /* 23  oneshot_cap      */
238   RES_K(470),     /* 24  oneshot_res  */
239   0,              /* 22  vco (variable)               */
240   0,              /* 26  mixer A (grounded)           */
241   0,              /* 25  mixer B (variable)           */
242   0,              /* 27  mixer C (variable)           */
243   0,              /* 1   envelope 1 (variable)        */
244   0,              /* 28  envelope 2 (grounded)        */
245   1               /* 9   enable (variable)            */
246};
247221
248
249222static MACHINE_CONFIG_START( spectra, spectra_state )
250223   /* basic machine hardware */
251224   MCFG_CPU_ADD("maincpu", M6502, XTAL_3_579545MHz/4)  // actually a M6503
r32772r32773
268241
269242   /* Sound */
270243   MCFG_FRAGMENT_ADD( genpin_audio )
244
271245   MCFG_SPEAKER_STANDARD_MONO("mono")
272246   MCFG_SOUND_ADD("snsnd", SN76477, 0)
273   MCFG_SOUND_CONFIG(sn76477_intf)
247   MCFG_SN76477_NOISE_PARAMS(RES_M(1000), RES_M(1000), CAP_N(0)) // noise + filter
248   MCFG_SN76477_DECAY_RES(RES_K(470))                    // decay_res
249   MCFG_SN76477_ATTACK_PARAMS(CAP_N(1), RES_K(22))       // attack_decay_cap + attack_res
250   MCFG_SN76477_AMP_RES(RES_K(100))                      // amplitude_res
251   MCFG_SN76477_FEEDBACK_RES(RES_K(52))                  // feedback_res
252   MCFG_SN76477_VCO_PARAMS(5.0, CAP_U(0.01), RES_K(390)) // VCO volt + cap + res
253   MCFG_SN76477_PITCH_VOLTAGE(0.0)                       // pitch_voltage
254   MCFG_SN76477_SLF_PARAMS(CAP_U(0.1), RES_M(1))         // slf caps + res
255   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(0.47), RES_K(470))  // oneshot caps + res
256   MCFG_SN76477_VCO_MODE(0)                              // VCO mode
257   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                    // mixer A, B, C
258   MCFG_SN76477_ENVELOPE_PARAMS(0, 0)                    // envelope 1, 2
259   MCFG_SN76477_ENABLE(1)                                // enable
274260   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.30)
275261MACHINE_CONFIG_END
276262
trunk/src/mame/audio/astrof.c
r32772r32773
192192}
193193
194194
195static const sn76477_interface tomahawk_sn76477_interface =
196{
197   0,              /*  4 noise_res (N/C)        */
198   0,              /*  5 filter_res (N/C)       */
199   0,              /*  6 filter_cap (N/C)       */
200   0,              /*  7 decay_res (N/C)        */
201   0,              /*  8 attack_decay_cap (N/C) */
202   0,              /* 10 attack_res (N/C)       */
203   RES_K(47),      /* 11 amplitude_res          */
204   RES_K(47),      /* 12 feedback_res           */
205   0,              /* 16 vco_voltage (N/C)      */
206   CAP_U(0.033),   /* 17 vco_cap                */
207   RES_K(33),      /* 18 vco_res                */
208   5.0,            /* 19 pitch_voltage          */
209   RES_K(47),      /* 20 slf_res                */
210   CAP_U(2.2),     /* 21 slf_cap                */
211   0,              /* 23 oneshot_cap (N/C)      */
212   0,              /* 24 oneshot_res (N/C)      */
213   1,              /* 22 vco                    */
214   0,              /* 26 mixer A                */
215   0,              /* 25 mixer B                */
216   0,              /* 27 mixer C                */
217   0,              /* 1  envelope 1             */
218   0,              /* 28 envelope 2             */
219   1               /* 9  enable (variable)      */
220};
221
222
223195MACHINE_CONFIG_FRAGMENT( tomahawk_audio )
224196   MCFG_SPEAKER_STANDARD_MONO("mono")
225197   MCFG_SOUND_ADD("snsnd", SN76477, 0)
226   MCFG_SOUND_CONFIG(tomahawk_sn76477_interface)
198   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                   // noise + filter: N/C
199   MCFG_SN76477_DECAY_RES(0)                            // decay_res N/C
200   MCFG_SN76477_ATTACK_PARAMS(0, 0)                     // attack_decay_cap + attack_res: N/C
201   MCFG_SN76477_AMP_RES(RES_K(47))                      // amplitude_res
202   MCFG_SN76477_FEEDBACK_RES(RES_K(47))                 // feedback_res
203   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.033), RES_K(33))  // VCO volt + cap + res
204   MCFG_SN76477_PITCH_VOLTAGE(5.0)                      // pitch_voltage
205   MCFG_SN76477_SLF_PARAMS(CAP_U(2.2), RES_K(47))       // slf caps + res
206   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                    // oneshot caps + res: N/C
207   MCFG_SN76477_VCO_MODE(1)                             // VCO mode
208   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                   // mixer A, B, C
209   MCFG_SN76477_ENVELOPE_PARAMS(0, 0)                   // envelope 1, 2
210   MCFG_SN76477_ENABLE(1)                               // enable
227211   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
228212MACHINE_CONFIG_END
trunk/src/mame/audio/crbaloon.c
r32772r32773
135135DISCRETE_SOUND_END
136136
137137
138
139static const sn76477_interface crbaloon_sn76477_interface =
140{
141   RES_K( 47), /*  4 noise_res          */
142   RES_K(330), /*  5 filter_res         */
143   CAP_P(470), /*  6 filter_cap         */
144   RES_K(220), /*  7 decay_res          */
145   CAP_U(1.0), /*  8 attack_decay_cap   */
146   RES_K(4.7), /* 10 attack_res         */
147   RES_M(  1), /* 11 amplitude_res      */
148   RES_K(200), /* 12 feedback_res       */
149   5.0,        /* 16 vco_voltage        */
150   CAP_P(470), /* 17 vco_cap            */
151   RES_K(330), /* 18 vco_res            */
152   5.0,        /* 19 pitch_voltage      */
153   RES_K( 20), /* 20 slf_res (variable) */
154   CAP_P(420), /* 21 slf_cap            */
155   CAP_U(1.0), /* 23 oneshot_cap        */
156   RES_K( 47), /* 24 oneshot_res        */
157   0,          /* 22 vco                */
158   0,          /* 26 mixer A            */
159   0,          /* 25 mixer B (variable) */
160   1,          /* 27 mixer C            */
161   1,          /* 1  envelope 1         */
162   0,          /* 28 envelope 2         */
163   0           /* 9  enable (variable)  */
164};
165
166
167
168138MACHINE_CONFIG_FRAGMENT( crbaloon_audio )
169139
170140   MCFG_SPEAKER_STANDARD_MONO("mono")
171141
172142   MCFG_SOUND_ADD("snsnd", SN76477, 0)
173   MCFG_SOUND_CONFIG(crbaloon_sn76477_interface)
143   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_K(330), CAP_P(470)) // noise + filter
144   MCFG_SN76477_DECAY_RES(RES_K(220))                   // decay_res
145   MCFG_SN76477_ATTACK_PARAMS(CAP_U(1.0), RES_K(4.7))   // attack_decay_cap + attack_res
146   MCFG_SN76477_AMP_RES(RES_M(1))                       // amplitude_res
147   MCFG_SN76477_FEEDBACK_RES(RES_K(200))                // feedback_res
148   MCFG_SN76477_VCO_PARAMS(5.0, CAP_P(470), RES_K(330)) // VCO volt + cap + res
149   MCFG_SN76477_PITCH_VOLTAGE(5.0)                      // pitch_voltage
150   MCFG_SN76477_SLF_PARAMS(CAP_P(420), RES_K(20))       // slf caps + res
151   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(1.0), RES_K(47))   // oneshot caps + res
152   MCFG_SN76477_VCO_MODE(0)                             // VCO mode
153   MCFG_SN76477_MIXER_PARAMS(0, 0, 1)                   // mixer A, B, C
154   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                   // envelope 1, 2
155   MCFG_SN76477_ENABLE(0)                               // enable
174156   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 2.0)
175157
176158   MCFG_SOUND_ADD("discrete", DISCRETE, 0)
trunk/src/mame/audio/mw8080bw.c
r32772r32773
27082708 *  Apr 2007, D.R.
27092709 *************************************/
27102710
2711static const sn76477_interface spcenctr_sn76477_interface =
2712{
2713   0,              /*  4 noise_res (N/C)        */
2714   0,              /*  5 filter_res (N/C)       */
2715   0,              /*  6 filter_cap (N/C)       */
2716   0,              /*  7 decay_res (N/C)        */
2717   0,              /*  8 attack_decay_cap (N/C) */
2718   RES_K(100),     /* 10 attack_res             */
2719   RES_K(56),      /* 11 amplitude_res          */
2720   RES_K(10),      /* 12 feedback_res           */
2721   0,              /* 16 vco_voltage (N/C)      */
2722   CAP_U(0.047),   /* 17 vco_cap                */
2723   RES_K(56),      /* 18 vco_res                */
2724   5.0,            /* 19 pitch_voltage          */
2725   RES_K(150),     /* 20 slf_res                */
2726   CAP_U(1.0),     /* 21 slf_cap                */
2727   0,              /* 23 oneshot_cap (N/C)      */
2728   0,              /* 24 oneshot_res (N/C)      */
2729   1,              /* 22 vco                    */
2730   0,              /* 26 mixer A                */
2731   0,              /* 25 mixer B                */
2732   0,              /* 27 mixer C                */
2733   1,              /* 1  envelope 1             */
2734   0,              /* 28 envelope 2             */
2735   1               /* 9  enable (variable)      */
2736};
2737
2738
27392711/* nodes - inputs */
27402712#define SPCENCTR_ENEMY_SHIP_SHOT_EN       NODE_01
27412713#define SPCENCTR_PLAYER_SHOT_EN           NODE_02
r32772r32773
32103182   MCFG_SPEAKER_STANDARD_MONO("mono")
32113183
32123184   MCFG_SOUND_ADD("snsnd", SN76477, 0)
3213   MCFG_SOUND_CONFIG(spcenctr_sn76477_interface)
3185   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                  // noise + filter: N/C
3186   MCFG_SN76477_DECAY_RES(0)                           // decay_res: N/C
3187   MCFG_SN76477_ATTACK_PARAMS(0, RES_K(100))           // attack_decay_cap + attack_res
3188   MCFG_SN76477_AMP_RES(RES_K(56))                     // amplitude_res
3189   MCFG_SN76477_FEEDBACK_RES(RES_K(10))                // feedback_res
3190   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.047), RES_K(56)) // VCO volt + cap + res
3191   MCFG_SN76477_PITCH_VOLTAGE(5.0)                     // pitch_voltage
3192   MCFG_SN76477_SLF_PARAMS(CAP_U(1.0), RES_K(150))     // slf caps + res
3193   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                   // oneshot caps + res: N/C
3194   MCFG_SN76477_VCO_MODE(1)                            // VCO mode
3195   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                  // mixer A, B, C
3196   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                  // envelope 1, 2
3197   MCFG_SN76477_ENABLE(1)                              // enable
32143198   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.20)
32153199
32163200   MCFG_SOUND_ADD("discrete", DISCRETE, 0)
r32772r32773
35083492 *
35093493 *************************************/
35103494
3511static const sn76477_interface invaders_sn76477_interface =
3512{
3513   0,          /*  4 noise_res (N/C)        */
3514   0,          /*  5 filter_res (N/C)       */
3515   0,          /*  6 filter_cap (N/C)       */
3516   0,          /*  7 decay_res (N/C)        */
3517   0,          /*  8 attack_decay_cap (N/C) */
3518   RES_K(100), /* 10 attack_res             */
3519   RES_K(56),  /* 11 amplitude_res          */
3520   RES_K(10),  /* 12 feedback_res           */
3521   0,          /* 16 vco_voltage (N/C)      */
3522   CAP_U(0.1), /* 17 vco_cap                */
3523   RES_K(8.2), /* 18 vco_res                */
3524   5.0,        /* 19 pitch_voltage          */
3525   RES_K(120), /* 20 slf_res                */
3526   CAP_U(1.0), /* 21 slf_cap                */
3527   0,          /* 23 oneshot_cap (N/C)      */
3528   0,          /* 24 oneshot_res (N/C)      */
3529   1,          /* 22 vco                    */
3530   0,          /* 26 mixer A                */
3531   0,          /* 25 mixer B                */
3532   0,          /* 27 mixer C                */
3533   1,          /* 1  envelope 1             */
3534   0,          /* 28 envelope 2             */
3535   1           /* 9  enable (variable)      */
3536};
3537
3538
3539
35403495static const char *const invaders_sample_names[] =
35413496{
35423497   "*invaders",
r32772r32773
35603515   MCFG_SPEAKER_STANDARD_MONO("mono")
35613516
35623517   MCFG_SOUND_ADD("snsnd", SN76477, 0)
3563   MCFG_SOUND_CONFIG(invaders_sn76477_interface)
3518   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                  // noise + filter: N/C
3519   MCFG_SN76477_DECAY_RES(0)                           // decay_res: N/C
3520   MCFG_SN76477_ATTACK_PARAMS(0, RES_K(100))           // attack_decay_cap + attack_res
3521   MCFG_SN76477_AMP_RES(RES_K(56))                     // amplitude_res
3522   MCFG_SN76477_FEEDBACK_RES(RES_K(10))                // feedback_res
3523   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.1), RES_K(8.2))  // VCO volt + cap + res
3524   MCFG_SN76477_PITCH_VOLTAGE(5.0)                     // pitch_voltage
3525   MCFG_SN76477_SLF_PARAMS(CAP_U(1.0), RES_K(120))     // slf caps + res
3526   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                   // oneshot caps + res: N/C
3527   MCFG_SN76477_VCO_MODE(1)                            // VCO mode
3528   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                  // mixer A, B, C
3529   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                  // envelope 1, 2
3530   MCFG_SN76477_ENABLE(1)                              // enable
35643531   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.5)
35653532
35663533   MCFG_SOUND_ADD("samples", SAMPLES, 0)
r32772r32773
41284095   MCFG_SPEAKER_STANDARD_MONO("mono")
41294096
41304097   MCFG_SOUND_ADD("snsnd", SN76477, 0)
4131   MCFG_SOUND_CONFIG(invaders_sn76477_interface)
4098   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                  // noise + filter: N/C
4099   MCFG_SN76477_DECAY_RES(0)                           // decay_res: N/C
4100   MCFG_SN76477_ATTACK_PARAMS(0, RES_K(100))           // attack_decay_cap + attack_res
4101   MCFG_SN76477_AMP_RES(RES_K(56))                     // amplitude_res
4102   MCFG_SN76477_FEEDBACK_RES(RES_K(10))                // feedback_res
4103   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.1), RES_K(8.2))  // VCO volt + cap + res
4104   MCFG_SN76477_PITCH_VOLTAGE(5.0)                     // pitch_voltage
4105   MCFG_SN76477_SLF_PARAMS(CAP_U(1.0), RES_K(120))     // slf caps + res
4106   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                   // oneshot caps + res: N/C
4107   MCFG_SN76477_VCO_MODE(1)                            // VCO mode
4108   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                  // mixer A, B, C
4109   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                  // envelope 1, 2
4110   MCFG_SN76477_ENABLE(1)                              // enable
41324111   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.5)
41334112
41344113   MCFG_SOUND_ADD("discrete", DISCRETE, 0)
r32772r32773
45644543 *
45654544 *************************************/
45664545
4567static const sn76477_interface invad2ct_p1_sn76477_interface =
4568{
4569   0,          /*  4 noise_res (N/C)        */
4570   0,          /*  5 filter_res (N/C)       */
4571   0,          /*  6 filter_cap (N/C)       */
4572   0,          /*  7 decay_res (N/C)        */
4573   0,          /*  8 attack_decay_cap (N/C) */
4574   RES_K(100), /* 10 attack_res             */
4575   RES_K(56),  /* 11 amplitude_res          */
4576   RES_K(10),  /* 12 feedback_res           */
4577   0,          /* 16 vco_voltage (N/C)      */
4578   CAP_U(0.1), /* 17 vco_cap                */
4579   RES_K(8.2), /* 18 vco_res                */
4580   5.0,        /* 19 pitch_voltage          */
4581   RES_K(120), /* 20 slf_res                */
4582   CAP_U(1.0), /* 21 slf_cap                */
4583   0,          /* 23 oneshot_cap (N/C)      */
4584   0,          /* 24 oneshot_res (N/C)      */
4585   1,          /* 22 vco                    */
4586   0,          /* 26 mixer A                */
4587   0,          /* 25 mixer B                */
4588   0,          /* 27 mixer C                */
4589   1,          /* 1  envelope 1             */
4590   0,          /* 28 envelope 2             */
4591   1           /* 9  enable (variable)      */
4592};
4593
4594
4595static const sn76477_interface invad2ct_p2_sn76477_interface =
4596{
4597   0,            /*  4 noise_res (N/C)        */
4598   0,            /*  5 filter_res (N/C)       */
4599   0,            /*  6 filter_cap (N/C)       */
4600   0,            /*  7 decay_res (N/C)        */
4601   0,            /*  8 attack_decay_cap (N/C) */
4602   RES_K(100),   /* 10 attack_res             */
4603   RES_K(56),    /* 11 amplitude_res          */
4604   RES_K(10),    /* 12 feedback_res           */
4605   0,            /* 16 vco_voltage (N/C)      */
4606   CAP_U(0.047), /* 17 vco_cap                */
4607   RES_K(39),    /* 18 vco_res                */
4608   5.0,          /* 19 pitch_voltage          */
4609   RES_K(120),   /* 20 slf_res                */
4610   CAP_U(1.0),   /* 21 slf_cap                */
4611   0,            /* 23 oneshot_cap (N/C)      */
4612   0,            /* 24 oneshot_res (N/C)      */
4613   1,            /* 22 vco                    */
4614   0,            /* 26 mixer A                */
4615   0,            /* 25 mixer B                */
4616   0,            /* 27 mixer C                */
4617   1,            /* 1  envelope 1             */
4618   0,            /* 28 envelope 2             */
4619   1             /* 9  enable (variable)      */
4620};
4621
4622
46234546static const discrete_op_amp_1sht_info invad2ct_invader_hit_1sht =
46244547{
46254548   DISC_OP_AMP_1SHT_1 | DISC_OP_AMP_IS_NORTON,
r32772r32773
47574680   MCFG_SOUND_ROUTE(1, "spk2", 0.5)
47584681
47594682   MCFG_SOUND_ADD("sn1", SN76477, 0)
4760   MCFG_SOUND_CONFIG(invad2ct_p1_sn76477_interface)
4683   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                  // noise + filter: N/C
4684   MCFG_SN76477_DECAY_RES(0)                           // decay_res: N/C
4685   MCFG_SN76477_ATTACK_PARAMS(0, RES_K(100))           // attack_decay_cap + attack_res
4686   MCFG_SN76477_AMP_RES(RES_K(56))                     // amplitude_res
4687   MCFG_SN76477_FEEDBACK_RES(RES_K(10))                // feedback_res
4688   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.1), RES_K(8.2))  // VCO volt + cap + res
4689   MCFG_SN76477_PITCH_VOLTAGE(5.0)                     // pitch_voltage
4690   MCFG_SN76477_SLF_PARAMS(CAP_U(1.0), RES_K(120))     // slf caps + res
4691   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                   // oneshot caps + res: N/C
4692   MCFG_SN76477_VCO_MODE(1)                            // VCO mode
4693   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                  // mixer A, B, C
4694   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                  // envelope 1, 2
4695   MCFG_SN76477_ENABLE(1)                              // enable
47614696   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "spk1", 0.3)
47624697
47634698   MCFG_SOUND_ADD("sn2", SN76477, 0)
4764   MCFG_SOUND_CONFIG(invad2ct_p2_sn76477_interface)
4699   MCFG_SN76477_NOISE_PARAMS(0, 0, 0)                  // noise + filter: N/C
4700   MCFG_SN76477_DECAY_RES(0)                           // decay_res: N/C
4701   MCFG_SN76477_ATTACK_PARAMS(0, RES_K(100))           // attack_decay_cap + attack_res
4702   MCFG_SN76477_AMP_RES(RES_K(56))                     // amplitude_res
4703   MCFG_SN76477_FEEDBACK_RES(RES_K(10))                // feedback_res
4704   MCFG_SN76477_VCO_PARAMS(0, CAP_U(0.047),  RES_K(39))  // VCO volt + cap + res
4705   MCFG_SN76477_PITCH_VOLTAGE(5.0)                     // pitch_voltage
4706   MCFG_SN76477_SLF_PARAMS(CAP_U(1.0), RES_K(120))     // slf caps + res
4707   MCFG_SN76477_ONESHOT_PARAMS(0, 0)                   // oneshot caps + res: N/C
4708   MCFG_SN76477_VCO_MODE(1)                            // VCO mode
4709   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                  // mixer A, B, C
4710   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                  // envelope 1, 2
4711   MCFG_SN76477_ENABLE(1)                              // enable
47654712   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "spk2", 0.3)
47664713MACHINE_CONFIG_END
47674714
trunk/src/mame/audio/snk6502.c
r32772r32773
9292};
9393
9494
95const sn76477_interface sasuke_sn76477_intf_1 =
96{
97   RES_K(470),     /*  4  noise_res     */
98   RES_K(150),     /*  5  filter_res    */
99   CAP_P(4700),    /*  6  filter_cap    */
100   RES_K(22),      /*  7  decay_res     */
101   CAP_U(10),      /*  8  attack_decay_cap  */
102   RES_K(10),      /* 10  attack_res    */
103   RES_K(100),     /* 11  amplitude_res     */
104   RES_K(47),      /* 12  feedback_res      */
105   0 /* NC */,     /* 16  vco_voltage   */
106   0 /* NC */,     /* 17  vco_cap       */
107   0 /* NC */,     /* 18  vco_res       */
108   0 /* NC */,     /* 19  pitch_voltage     */
109   RES_K(10),      /* 20  slf_res       */
110   0 /* NC */,     /* 21  slf_cap       */
111   CAP_U(2.2),     /* 23  oneshot_cap   */
112   RES_K(100),     /* 24  oneshot_res   */
113   0,              /* 22  vco                    */
114   0,              /* 26  mixer A           */
115   1,              /* 25  mixer B           */
116   0,              /* 27  mixer C           */
117   1,              /* 1   envelope 1        */
118   0,              /* 28  envelope 2        */
119   1               /* 9   enable (variable)      */
120
121   // ic48     GND: 2,22,26,27,28  +5V: 1,15,25
122};
123
124const sn76477_interface sasuke_sn76477_intf_2 =
125{
126   RES_K(340),     /*  4  noise_res     */
127   RES_K(47),      /*  5  filter_res    */
128   CAP_P(100),     /*  6  filter_cap    */
129   RES_K(470),     /*  7  decay_res     */
130   CAP_U(4.7),     /*  8  attack_decay_cap  */
131   RES_K(10),      /* 10  attack_res    */
132   RES_K(100),     /* 11  amplitude_res     */
133   RES_K(47),      /* 12  feedback_res      */
134   0 /* NC */,     /* 16  vco_voltage   */
135   CAP_P(220),     /* 17  vco_cap       */
136   RES_K(1000),    /* 18  vco_res       */
137   0 /* NC */,     /* 19  pitch_voltage     */
138   RES_K(220),     /* 20  slf_res       */
139   0 /* NC */,     /* 21  slf_cap       */
140   CAP_U(22),      /* 23  oneshot_cap   */
141   RES_K(47),      /* 24  oneshot_res   */
142   1,              /* 22  vco                    */
143   0,              /* 26  mixer A           */
144   1,              /* 25  mixer B           */
145   0,              /* 27  mixer C           */
146   1,              /* 1   envelope 1        */
147   1,              /* 28  envelope 2        */
148   1               /* 9   enable (variable)      */
149
150   // ic51     GND: 2,26,27        +5V: 1,15,22,25,28
151};
152
153const sn76477_interface sasuke_sn76477_intf_3 =
154{
155   RES_K(330),     /*  4  noise_res     */
156   RES_K(47),      /*  5  filter_res    */
157   CAP_P(100),     /*  6  filter_cap    */
158   RES_K(1),       /*  7  decay_res     */
159   0 /* NC */,     /*  8  attack_decay_cap  */
160   RES_K(1),       /* 10  attack_res    */
161   RES_K(100),     /* 11  amplitude_res     */
162   RES_K(47),      /* 12  feedback_res      */
163   0 /* NC */,     /* 16  vco_voltage   */
164   CAP_P(1000),    /* 17  vco_cap       */
165   RES_K(1000),    /* 18  vco_res       */
166   0 /* NC */,     /* 19  pitch_voltage     */
167   RES_K(10),      /* 20  slf_res       */
168   CAP_U(1),       /* 21  slf_cap       */
169   CAP_U(2.2),     /* 23  oneshot_cap   */
170   RES_K(150),     /* 24  oneshot_res   */
171   0,              /* 22  vco                    */
172   1,              /* 26  mixer A           */
173   1,              /* 25  mixer B           */
174   0,              /* 27  mixer C           */
175   1,              /* 1   envelope 1        */
176   0,              /* 28  envelope 2        */
177   1               /* 9   enable (variable)      */
178
179   // ic52     GND: 2,22,27,28     +5V: 1,15,25,26
180};
181
182const sn76477_interface satansat_sn76477_intf =
183{
184   RES_K(470),     /*  4  noise_res     */
185   RES_M(1.5),     /*  5  filter_res    */
186   CAP_P(220),     /*  6  filter_cap    */
187   0,              /*  7  decay_res     */
188   0,              /*  8  attack_decay_cap  */
189   0,              /* 10  attack_res    */
190   RES_K(47),      /* 11  amplitude_res     */
191   RES_K(47),      /* 12  feedback_res      */
192   0,              /* 16  vco_voltage   */
193   0,              /* 17  vco_cap       */
194   0,              /* 18  vco_res       */
195   0,              /* 19  pitch_voltage     */
196   0,              /* 20  slf_res       */
197   0,              /* 21  slf_cap       */
198   0,              /* 23  oneshot_cap   */
199   0,              /* 24  oneshot_res   */
200   0,              /* 22  vco                    */
201   0,              /* 26  mixer A           */
202   1,              /* 25  mixer B           */
203   0,              /* 27  mixer C           */
204   1,              /* 1   envelope 1        */
205   1,              /* 28  envelope 2        */
206   1               /* 9   enable (variable)      */
207
208   // ???      GND: 2,26,27        +5V: 15,25
209};
210
211const sn76477_interface vanguard_sn76477_intf_1 =
212{
213   RES_K(470),     /*  4  noise_res     */
214   RES_M(1.5),     /*  5  filter_res    */
215   CAP_P(220),     /*  6  filter_cap    */
216   0,              /*  7  decay_res     */
217   0,              /*  8  attack_decay_cap  */
218   0,              /* 10  attack_res    */
219   RES_K(47),      /* 11  amplitude_res     */
220   RES_K(4.7),     /* 12  feedback_res      */
221   0,              /* 16  vco_voltage   */
222   0,              /* 17  vco_cap       */
223   0,              /* 18  vco_res       */
224   0,              /* 19  pitch_voltage     */
225   0,              /* 20  slf_res       */
226   0,              /* 21  slf_cap       */
227   0,              /* 23  oneshot_cap   */
228   0,              /* 24  oneshot_res   */
229   0,              /* 22  vco                    */
230   0,              /* 26  mixer A           */
231   1,              /* 25  mixer B           */
232   0,              /* 27  mixer C           */
233   1,              /* 1   envelope 1        */
234   1,              /* 28  envelope 2        */
235   1               /* 9   enable (variable)      */
236
237   // SHOT A   GND: 2,9,26,27  +5V: 15,25
238};
239
240const sn76477_interface vanguard_sn76477_intf_2 =
241{
242   RES_K(10),      /*  4  noise_res     */
243   RES_K(30),      /*  5  filter_res    */
244   0,              /*  6  filter_cap    */
245   0,              /*  7  decay_res     */
246   0,              /*  8  attack_decay_cap  */
247   0,              /* 10  attack_res    */
248   RES_K(47),      /* 11  amplitude_res     */
249   RES_K(4.7),     /* 12  feedback_res      */
250   0,              /* 16  vco_voltage   */
251   0,              /* 17  vco_cap       */
252   0,              /* 18  vco_res       */
253   0,              /* 19  pitch_voltage     */
254   0,              /* 20  slf_res       */
255   0,              /* 21  slf_cap       */
256   0,              /* 23  oneshot_cap   */
257   0,              /* 24  oneshot_res   */
258   0,              /* 22  vco                    */
259   0,              /* 26  mixer A           */
260   1,              /* 25  mixer B           */
261   0,              /* 27  mixer C           */
262   0,              /* 1   envelope 1        */
263   1,              /* 28  envelope 2        */
264   1               /* 9   enable (variable)      */
265
266   // SHOT B   GND: 1,2,26,27  +5V: 15,25,28
267};
268
269const sn76477_interface fantasy_sn76477_intf =
270{
271   RES_K(470),     /*  4  noise_res     */
272   RES_M(1.5),     /*  5  filter_res    */
273   CAP_P(220),     /*  6  filter_cap    */
274   0,              /*  7  decay_res     */
275   0,              /*  8  attack_decay_cap  */
276   0,              /* 10  attack_res    */
277   RES_K(470),     /* 11  amplitude_res     */
278   RES_K(4.7),     /* 12  feedback_res      */
279   0,              /* 16  vco_voltage   */
280   0,              /* 17  vco_cap       */
281   0,              /* 18  vco_res       */
282   0,              /* 19  pitch_voltage     */
283   0,              /* 20  slf_res       */
284   0,              /* 21  slf_cap       */
285   0,              /* 23  oneshot_cap   */
286   0,              /* 24  oneshot_res   */
287   0,              /* 22  vco                    */
288   0,              /* 26  mixer A           */
289   1,              /* 25  mixer B           */
290   0,              /* 27  mixer C           */
291   /* schematic does not show pin 1 grounded, but it must be. */
292   /* otherwise it is using the VCO for the envelope, but the VCO is not hooked up */
293   0,              /* 1   envelope 1        */
294   1,              /* 28  envelope 2        */
295   0               /* 9   enable (variable)      */
296
297   // BOMB     GND:    2,9,26,27       +5V: 15,25
298};
299
300
30195/************************************************************************
30296 * fantasy Sound System Analog emulation
30397 * July 2008, D. Renaud
trunk/src/mame/audio/8080bw.c
r32772r32773
761761#define SCHASER_4V      SCHASER_HSYNC /2 /4
762762#define SCHASER_8V      SCHASER_HSYNC /2 /8
763763
764const sn76477_interface schaser_sn76477_interface =
765{
766   RES_K( 47), /*  4 noise_res         */
767   RES_K(330), /*  5 filter_res        */
768   CAP_P(470), /*  6 filter_cap        */
769   RES_M(2.2), /*  7 decay_res         */
770   CAP_U(1.0), /*  8 attack_decay_cap  */
771   RES_K(4.7), /* 10 attack_res        */
772   0,          /* 11 amplitude_res (variable)  */
773   RES_K(33),  /* 12 feedback_res      */
774   0,          /* 16 vco_voltage       */
775   CAP_U(0.1), /* 17 vco_cap           */
776   RES_K(39),  /* 18 vco_res           */
777   5.0,        /* 19 pitch_voltage     */
778   RES_K(120), /* 20 slf_res           */
779   CAP_U(1.0), /* 21 slf_cap           */
780   CAP_U(0.1), /* 23 oneshot_cap       */
781   RES_K(220), /* 24 oneshot_res       */
782   1,          /* 22 vco               */
783   0,          /* 26 mixer A           */
784   0,          /* 25 mixer B           */
785   0,          /* 27 mixer C           */
786   1,          /* 1  envelope 1        */
787   0,          /* 28 envelope 2        */
788   1           /* 9  enable (variable) */
789};
790764
791765/* Nodes - Inputs */
792766#define SCHASER_DOT_EN      NODE_01
r32772r32773
10681042/* Correct samples not available         */
10691043/*****************************************/
10701044
1071const sn76477_interface lupin3_sn76477_interface =
1072{
1073   0,          /*  4 noise_res (N/C)        */
1074   0,          /*  5 filter_res (N/C)       */
1075   0,          /*  6 filter_cap (N/C)       */
1076   0,          /*  7 decay_res (N/C)        */
1077   0,          /*  8 attack_decay_cap (N/C) */
1078   RES_K(100), /* 10 attack_res             */
1079   RES_K(56),  /* 11 amplitude_res          */
1080   RES_K(10),  /* 12 feedback_res           */
1081   0,          /* 16 vco_voltage (N/C)      */
1082   CAP_U(0.1), /* 17 vco_cap                */
1083   RES_K(8.2), /* 18 vco_res                */
1084   5.0,        /* 19 pitch_voltage          */
1085   RES_K(120), /* 20 slf_res                */
1086   CAP_U(1.0), /* 21 slf_cap                */
1087   0,          /* 23 oneshot_cap (N/C)      */
1088   0,          /* 24 oneshot_res (N/C)      */
1089   1,          /* 22 vco                    */
1090   0,          /* 26 mixer A                */
1091   0,          /* 25 mixer B                */
1092   0,          /* 27 mixer C                */
1093   1,          /* 1  envelope 1             */
1094   0,          /* 28 envelope 2             */
1095   1           /* 9  enable (variable)      */
1096};
1097
10981045const char *const lupin3_sample_names[] =
10991046{
11001047   "*lupin3",
trunk/src/mame/audio/n8080.c
r32772r32773
1010static const double ATTACK_RATE = 10e-6 * 500;
1111static const double DECAY_RATE = 10e-6 * 16000;
1212
13static const sn76477_interface sheriff_sn76477_interface =
14{
15   RES_K(36)  ,  /* 04 */
16   RES_K(100) ,  /* 05 */
17   CAP_N(1)   ,  /* 06 */
18   RES_K(620) ,  /* 07 */
19   CAP_U(1)   ,  /* 08 */
20   RES_K(20)  ,  /* 10 */
21   RES_K(150) ,  /* 11 */
22   RES_K(47)  ,  /* 12 */
23   0          ,  /* 16 */
24   CAP_N(1)   ,  /* 17 */
25   RES_M(1.5) ,  /* 18 */
26   0          ,  /* 19 */
27   RES_M(1.5) ,  /* 20 */
28   CAP_N(47)  ,  /* 21 */
29   CAP_N(47)  ,  /* 23 */
30   RES_K(560) ,  /* 24 */
31   0,            /* 22 vco */
32   0,            /* 26 mixer A */
33   0,            /* 25 mixer B */
34   0,            /* 27 mixer C */
35   1,            /* 1  envelope 1 */
36   0,            /* 28 envelope 2 */
37   1             /* 9  enable */
38};
3913
40
41static const sn76477_interface spacefev_sn76477_interface =
42{
43   RES_K(36)  ,  /* 04 */
44   RES_K(150) ,  /* 05 */
45   CAP_N(1)   ,  /* 06 */
46   RES_M(1)   ,  /* 07 */
47   CAP_U(1)   ,  /* 08 */
48   RES_K(20)  ,  /* 10 */
49   RES_K(150) ,  /* 11 */
50   RES_K(47)  ,  /* 12 */
51   0          ,  /* 16 */
52   CAP_N(1)   ,  /* 17 */
53   RES_M(1.5) ,  /* 18 */
54   0          ,  /* 19 */
55   RES_M(1)   ,  /* 20 */
56   CAP_N(47)  ,  /* 21 */
57   CAP_N(47)  ,  /* 23 */
58   RES_K(820) ,  /* 24 */
59   0,            /* 22 vco */
60   0,            /* 26 mixer A */
61   0,            /* 25 mixer B */
62   0,            /* 27 mixer C */
63   1,            /* 1  envelope 1 */
64   0,            /* 28 envelope 2 */
65   1             /* 9  enable */
66};
67
68
6914void n8080_state::spacefev_update_SN76477_status()
7015{
7116   double dblR0 = RES_M(1.0);
r32772r32773
564509   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.30)
565510
566511   MCFG_SOUND_ADD("snsnd", SN76477, 0)
567   MCFG_SOUND_CONFIG(spacefev_sn76477_interface)
512   MCFG_SN76477_NOISE_PARAMS(RES_K(36), RES_K(150), CAP_N(1)) // noise + filter
513   MCFG_SN76477_DECAY_RES(RES_M(1))                    // decay_res
514   MCFG_SN76477_ATTACK_PARAMS(CAP_U(1.0), RES_K(20))   // attack_decay_cap + attack_res
515   MCFG_SN76477_AMP_RES(RES_K(150))                    // amplitude_res
516   MCFG_SN76477_FEEDBACK_RES(RES_K(47))                // feedback_res
517   MCFG_SN76477_VCO_PARAMS(0, CAP_N(1), RES_M(1.5))    // VCO volt + cap + res
518   MCFG_SN76477_PITCH_VOLTAGE(0)                       // pitch_voltage
519   MCFG_SN76477_SLF_PARAMS(CAP_N(47), RES_M(1))        // slf caps + res
520   MCFG_SN76477_ONESHOT_PARAMS(CAP_N(47), RES_K(820))  // oneshot caps + res
521   MCFG_SN76477_VCO_MODE(0)                            // VCO mode
522   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                  // mixer A, B, C
523   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                  // envelope 1, 2
524   MCFG_SN76477_ENABLE(1)                              // enable
568525   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.35)
569526MACHINE_CONFIG_END
570527
r32772r32773
586543   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.30)
587544
588545   MCFG_SOUND_ADD("snsnd", SN76477, 0)
589   MCFG_SOUND_CONFIG(sheriff_sn76477_interface)
546   MCFG_SN76477_NOISE_PARAMS(RES_K(36), RES_K(100), CAP_N(1)) // noise + filter
547   MCFG_SN76477_DECAY_RES(RES_K(620))                  // decay_res
548   MCFG_SN76477_ATTACK_PARAMS(CAP_U(1.0), RES_K(20))   // attack_decay_cap + attack_res
549   MCFG_SN76477_AMP_RES(RES_K(150))                    // amplitude_res
550   MCFG_SN76477_FEEDBACK_RES(RES_K(47))                // feedback_res
551   MCFG_SN76477_VCO_PARAMS(0, CAP_N(1), RES_M(1.5))    // VCO volt + cap + res
552   MCFG_SN76477_PITCH_VOLTAGE(0)                       // pitch_voltage
553   MCFG_SN76477_SLF_PARAMS(CAP_N(47), RES_M(1.5))      // slf caps + res
554   MCFG_SN76477_ONESHOT_PARAMS(CAP_N(47), RES_K(560))  // oneshot caps + res
555   MCFG_SN76477_VCO_MODE(0)                            // VCO mode
556   MCFG_SN76477_MIXER_PARAMS(0, 0, 0)                  // mixer A, B, C
557   MCFG_SN76477_ENVELOPE_PARAMS(1, 0)                  // envelope 1, 2
558   MCFG_SN76477_ENABLE(1)                              // enable
590559   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.35)
591560MACHINE_CONFIG_END
592561
trunk/src/emu/sound/sn76477.c
r32772r32773
3232#include "sn76477.h"
3333
3434
35
3635/*****************************************************************************
3736 *
3837 *  Debugging
r32772r32773
7978 *
8079 *  Test Mode
8180 *
82 *  in test mode, the interface structure
83 *  passed in by the driver is not used.
84 *  Instead, the values for all the inputs
85 *  can be specified by modifing the structure
86 *  below.  Calls by the driver to the input
87 *  setter functions are ignored. Use the
88 *  space bar to enable/disable the chip.
81 *  in test mode, calls by the driver to
82 *  the input setter functions are ignored.
83 *  Interface values can be set in device_start
84 *  to any desired test value.
85 *  Use the space bar to enable/disable the chip.
8986 *
9087 *****************************************************************************/
9188
9289#define TEST_MODE   0
9390
94
95#if TEST_MODE
96
97static const sn76477_interface empty_interface =
98{
99   0,          /*  4 noise_clock_res  */
100   0,          /*  5 filter_res       */
101   0,          /*  6 filter_cap       */
102   0,          /*  7 decay_res        */
103   0,          /*  8 attack_decay_cap */
104   0,          /* 10 attack_res       */
105   0,          /* 11 amplitude_res    */
106   0,          /* 12 feedback_res     */
107   0,          /* 16 vco_voltage      */
108   0,          /* 17 vco_cap          */
109   0,          /* 18 vco_res          */
110   0,          /* 19 pitch_voltage    */
111   0,          /* 20 slf_res          */
112   0,          /* 21 slf_cap          */
113   0,          /* 23 oneshot_cap      */
114   0,          /* 24 oneshot_res      */
115   0,          /* 22 vco              */
116   0,          /* 26 mixer A          */
117   0,          /* 25 mixer B          */
118   0,          /* 27 mixer C          */
119   0,          /* 1  envelope 1       */
120   0,          /* 28 envelope 2       */
121   0           /* 9  enable           */
122};
123
124#define test_interface empty_interface
125
126#endif
127
128
129
13091/*****************************************************************************
13192 *
13293 *  Constants
r32772r32773
231192      m_noise_gen_count(0),
232193      m_attack_decay_cap_voltage(0),
233194      m_rng(0),
195      m_mixer_a(0),
196      m_mixer_b(0),
197      m_mixer_c(0),
198      m_envelope_1(0),
199      m_envelope_2(0),
234200      m_channel(NULL),
235201      m_our_sample_rate(0),
236202      m_file(NULL)
r32772r32773
238204}
239205
240206//-------------------------------------------------
241//  device_config_complete - perform any
242//  operations now that the configuration is
243//  complete
244//-------------------------------------------------
245
246void sn76477_device::device_config_complete()
247{
248   // inherit a copy of the static data
249   const sn76477_interface *intf = reinterpret_cast<const sn76477_interface *>(static_config());
250   if (intf != NULL)
251   #if TEST_MODE == 0
252   *static_cast<sn76477_interface *>(this) = *intf;
253
254   // or initialize to defaults if none provided
255   else
256   {
257      m_intf_noise_clock_res = 0.0;
258      m_intf_noise_filter_res = 0.0;
259      m_intf_noise_filter_cap = 0.0;
260      m_intf_decay_res = 0.0;
261      m_intf_attack_decay_cap = 0.0;
262      m_intf_attack_res = 0.0;
263      m_intf_amplitude_res = 0.0;
264      m_intf_feedback_res = 0.0;
265      m_intf_vco_voltage = 0.0;
266      m_intf_vco_cap = 0.0;
267      m_intf_vco_res = 0.0;
268      m_intf_pitch_voltage = 0.0;
269      m_intf_slf_res = 0.0;
270      m_intf_slf_cap = 0.0;
271      m_intf_one_shot_cap = 0.0;
272      m_intf_one_shot_res = 0.0;
273      m_intf_vco = 0;
274      m_intf_mixer_a = 0;
275      m_intf_mixer_b = 0;
276      m_intf_mixer_c = 0;
277      m_intf_envelope_1 = 0;
278      m_intf_envelope_2 = 0;
279      m_intf_enable = 0;
280   }
281   #else
282   intf = &test_interface;
283   #endif
284}
285
286//-------------------------------------------------
287207//  device_start - device-specific startup
288208//-------------------------------------------------
289209
r32772r32773
302222
303223   intialize_noise();
304224
305   /* set up interface values */
306   _SN76477_enable_w(m_intf_enable);
307   _SN76477_vco_w(m_intf_vco);
308   _SN76477_mixer_a_w(m_intf_mixer_a);
309   _SN76477_mixer_b_w(m_intf_mixer_b);
310   _SN76477_mixer_c_w(m_intf_mixer_c);
311   _SN76477_envelope_1_w(m_intf_envelope_1);
312   _SN76477_envelope_2_w(m_intf_envelope_2);
313   _SN76477_one_shot_res_w(m_intf_one_shot_res);
314   _SN76477_one_shot_cap_w(m_intf_one_shot_cap);
315   _SN76477_slf_res_w(m_intf_slf_res);
316   _SN76477_slf_cap_w(m_intf_slf_cap);
317   _SN76477_vco_res_w(m_intf_vco_res);
318   _SN76477_vco_cap_w(m_intf_vco_cap);
319   _SN76477_vco_voltage_w(m_intf_vco_voltage);
320   _SN76477_noise_clock_res_w(m_intf_noise_clock_res);
321   _SN76477_noise_filter_res_w(m_intf_noise_filter_res);
322   _SN76477_noise_filter_cap_w(m_intf_noise_filter_cap);
323   _SN76477_decay_res_w(m_intf_decay_res);
324   _SN76477_attack_res_w(m_intf_attack_res);
325   _SN76477_attack_decay_cap_w(m_intf_attack_decay_cap);
326   _SN76477_amplitude_res_w(m_intf_amplitude_res);
327   _SN76477_feedback_res_w(m_intf_feedback_res);
328   _SN76477_pitch_voltage_w(m_intf_pitch_voltage);
225   // set up mixer and envelope modes, based on interface values
226   _SN76477_mixer_a_w(m_mixer_a);
227   _SN76477_mixer_b_w(m_mixer_b);
228   _SN76477_mixer_c_w(m_mixer_c);
229   _SN76477_envelope_1_w(m_envelope_1);
230   _SN76477_envelope_2_w(m_envelope_2);
329231
330232   m_one_shot_cap_voltage = ONE_SHOT_CAP_VOLTAGE_MIN;
331233   m_slf_cap_voltage = SLF_CAP_VOLTAGE_MIN;
trunk/src/emu/sound/sn76477.h
r32772r32773
4141#include "machine/rescap.h"
4242
4343
44
4544/*****************************************************************************
4645 *
4746 *  Interface definition
4847 *
4948 *****************************************************************************/
5049
51struct sn76477_interface
52{
53   double m_intf_noise_clock_res;
54   double m_intf_noise_filter_res;
55   double m_intf_noise_filter_cap;
56   double m_intf_decay_res;
57   double m_intf_attack_decay_cap;
58   double m_intf_attack_res;
59   double m_intf_amplitude_res;
60   double m_intf_feedback_res;
61   double m_intf_vco_voltage;
62   double m_intf_vco_cap;
63   double m_intf_vco_res;
64   double m_intf_pitch_voltage;
65   double m_intf_slf_res;
66   double m_intf_slf_cap;
67   double m_intf_one_shot_cap;
68   double m_intf_one_shot_res;
69   UINT32 m_intf_vco;
70   UINT32 m_intf_mixer_a;
71   UINT32 m_intf_mixer_b;
72   UINT32 m_intf_mixer_c;
73   UINT32 m_intf_envelope_1;
74   UINT32 m_intf_envelope_2;
75   UINT32 m_intf_enable;
76};
7750
51#define MCFG_SN76477_NOISE_PARAMS(_clock_res, _filter_res, _filter_cap) \
52   sn76477_device::set_noise_params(*device, _clock_res, _filter_res, _filter_cap);
53
54#define MCFG_SN76477_DECAY_RES(_decay_res) \
55   sn76477_device::set_decay_res(*device, _decay_res);
56
57#define MCFG_SN76477_ATTACK_PARAMS(_decay_cap, _res) \
58   sn76477_device::set_attack_params(*device, _decay_cap, _res);
59
60#define MCFG_SN76477_AMP_RES(_amp_res) \
61   sn76477_device::set_amp_res(*device, _amp_res);
62
63#define MCFG_SN76477_FEEDBACK_RES(_feedback_res) \
64   sn76477_device::set_feedack_res(*device, _feedback_res);
65
66#define MCFG_SN76477_VCO_PARAMS(_volt, _cap, _res) \
67   sn76477_device::set_vco_params(*device, _volt, _cap, _res);
68
69#define MCFG_SN76477_PITCH_VOLTAGE(_volt) \
70   sn76477_device::set_pitch_voltage(*device, _volt);
71
72#define MCFG_SN76477_SLF_PARAMS(_cap, _res) \
73   sn76477_device::set_slf_params(*device, _cap, _res);
74
75#define MCFG_SN76477_ONESHOT_PARAMS(_cap, _res) \
76   sn76477_device::set_oneshot_params(*device, _cap, _res);
77
78#define MCFG_SN76477_VCO_MODE(_mode) \
79   sn76477_device::set_vco_mode(*device, _mode);
80
81#define MCFG_SN76477_MIXER_PARAMS(_a, _b, _c) \
82   sn76477_device::set_mixer_params(*device, _a, _b, _c);
83
84#define MCFG_SN76477_ENVELOPE_PARAMS(_env1, _env2) \
85   sn76477_device::set_envelope_params(*device, _env1, _env2);
86
87#define MCFG_SN76477_ENABLE(_enable) \
88   sn76477_device::set_enable(*device, _enable);
89
7890class sn76477_device : public device_t,
79                           public device_sound_interface,
80                           public sn76477_interface
91                  public device_sound_interface
8192{
8293public:
8394   sn76477_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
8495   ~sn76477_device() {}
8596
97   static void set_noise_params(device_t &device, double clock_res, double filter_res, double filter_cap)
98   {
99      sn76477_device &dev = downcast<sn76477_device &>(device);
100      dev.m_noise_clock_res = clock_res;
101      dev.m_noise_filter_res = filter_res;
102      dev.m_noise_filter_cap = filter_cap;
103   }
104   static void set_decay_res(device_t &device, double decay_res) { downcast<sn76477_device &>(device).m_decay_res = decay_res; }
105   static void set_attack_params(device_t &device, double decay_cap, double res)
106   {
107      sn76477_device &dev = downcast<sn76477_device &>(device);
108      dev.m_attack_decay_cap = decay_cap;
109      dev.m_attack_res = res;
110   }
111   static void set_amp_res(device_t &device, double amp_res) { downcast<sn76477_device &>(device).m_amplitude_res = amp_res; }
112   static void set_feedack_res(device_t &device, double feedback_res) { downcast<sn76477_device &>(device).m_feedback_res = feedback_res; }
113   static void set_vco_params(device_t &device, double volt, double cap, double res)
114   {
115      sn76477_device &dev = downcast<sn76477_device &>(device);
116      dev.m_vco_voltage = volt;
117      dev.m_vco_cap = cap;
118      dev.m_vco_res = res;
119   }   
120   static void set_pitch_voltage(device_t &device, double volt) { downcast<sn76477_device &>(device).m_pitch_voltage = volt; }
121   static void set_slf_params(device_t &device, double cap, double res)
122   {
123      sn76477_device &dev = downcast<sn76477_device &>(device);
124      dev.m_slf_cap = cap;
125      dev.m_slf_res = res;
126   }
127   static void set_oneshot_params(device_t &device, double cap, double res)
128   {
129      sn76477_device &dev = downcast<sn76477_device &>(device);
130      dev.m_one_shot_cap = cap;
131      dev.m_one_shot_res = res;
132   }
133   static void set_vco_mode(device_t &device, UINT32 mode) { downcast<sn76477_device &>(device).m_vco_mode = mode; }
134   static void set_mixer_params(device_t &device, UINT32 a, UINT32 b, UINT32 c)
135   {
136      sn76477_device &dev = downcast<sn76477_device &>(device);
137      dev.m_mixer_a = a;
138      dev.m_mixer_b = b;
139      dev.m_mixer_c = c;
140   }   
141   static void set_envelope_params(device_t &device, UINT32 env1, UINT32 env2)
142   {
143      sn76477_device &dev = downcast<sn76477_device &>(device);
144      dev.m_envelope_1 = env1;
145      dev.m_envelope_2 = env2;
146   }   
147   static void set_enable(device_t &device, UINT32 enable) { downcast<sn76477_device &>(device).m_enable = enable; }
148   
149   
86150   /* these functions take 0 or 1 as a logic input */
87151   WRITE_LINE_MEMBER( enable_w );      /* active LO, 0 = enabled, 1 = disabled */
88152   WRITE_LINE_MEMBER( mixer_a_w );
r32772r32773
125189
126190protected:
127191   // device-level overrides
128   virtual void device_config_complete();
129192   virtual void device_start();
130193   virtual void device_stop();
131194
r32772r32773
188251
189252   UINT32 m_rng;                         /* current value of the random number generator */
190253
254   // configured by the drivers and used to setup m_mixer_mode & m_envelope_mode at start
255   UINT32 m_mixer_a;
256   UINT32 m_mixer_b;
257   UINT32 m_mixer_c;
258   UINT32 m_envelope_1;
259   UINT32 m_envelope_2;
260   
191261   /* others */
192262   sound_stream *m_channel;              /* returned by stream_create() */
193263   int m_our_sample_rate;                    /* from machine.sample_rate() */
trunk/src/mess/machine/hec2hrp.c
r32772r32773
818818   m_sn->enable_w(m_Pin_Value[9][m_AU[14]]);
819819}
820820
821const sn76477_interface hector_sn76477_interface =
822{
823   RES_K(47),      /*  4  noise_res*/
824   RES_K(330),     /*  5  filter_res*/
825   CAP_P(390),     /*  6  filter_cap*/
826   RES_K(680),     /*  7  decay_res*/
827   CAP_U(47),      /*  8  attack_decay_cap*/
828   RES_K(180),     /* 10  attack_res*/
829   RES_K(33),      /* 11  amplitude_res*/
830   RES_K(100),     /* 12  feedback_res*/
831   2,              /* 16  vco_voltage*/
832   CAP_N(47) ,     /* 17  vco_cap*/
833   RES_K(1000),    /* 18  vco_res*/
834   2,              /* 19  pitch_voltage*/
835   RES_K(180),     /* 20  slf_res*/
836   CAP_U(0.1),     /* 21  slf_cap*/
837   CAP_U(1.00001), /* 23  oneshot_cap*/
838   RES_K(10000)    /* 24  oneshot_res*/
839};
840
841821void hec2hrp_state::hector_reset(int hr, int with_D2 )
842822{
843823   // Initialization Hector
trunk/src/mess/includes/hec2hrp.h
r32772r32773
186186   void hector_disc2_reset();
187187};
188188
189/* Sound function*/
190extern const sn76477_interface hector_sn76477_interface;
191
192189extern const floppy_interface minidisc_floppy_interface;
trunk/src/mess/drivers/interact.c
r32772r32773
149149   MCFG_SOUND_ROUTE(0, "mono", 0.25)  /* Sound level for cassette, as it is in mono => output channel=0*/
150150
151151   MCFG_SOUND_ADD("sn76477", SN76477, 0)
152   MCFG_SOUND_CONFIG(hector_sn76477_interface)
152   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_K(330), CAP_P(390)) // noise + filter
153   MCFG_SN76477_DECAY_RES(RES_K(680))                  // decay_res
154   MCFG_SN76477_ATTACK_PARAMS(CAP_U(47), RES_K(180))   // attack_decay_cap + attack_res
155   MCFG_SN76477_AMP_RES(RES_K(33))                     // amplitude_res
156   MCFG_SN76477_FEEDBACK_RES(RES_K(100))               // feedback_res
157   MCFG_SN76477_VCO_PARAMS(2, CAP_N(47), RES_K(1000))  // VCO volt + cap + res
158   MCFG_SN76477_PITCH_VOLTAGE(2)                       // pitch_voltage
159   MCFG_SN76477_SLF_PARAMS(CAP_U(0.1), RES_K(180))     // slf caps + res
160   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(1.00001), RES_K(10000))   // oneshot caps + res
153161   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.1)
154162
155163   MCFG_SOUND_ADD("discrete", DISCRETE, 0) /* Son 1bit*/
r32772r32773
196204   MCFG_SOUND_ROUTE(0, "mono", 0.25)/* Sound level for cassette, as it is in mono => output channel=0*/
197205
198206   MCFG_SOUND_ADD("sn76477", SN76477, 0)
199   MCFG_SOUND_CONFIG(hector_sn76477_interface)
207   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_K(330), CAP_P(390)) // noise + filter
208   MCFG_SN76477_DECAY_RES(RES_K(680))                  // decay_res
209   MCFG_SN76477_ATTACK_PARAMS(CAP_U(47), RES_K(180))   // attack_decay_cap + attack_res
210   MCFG_SN76477_AMP_RES(RES_K(33))                     // amplitude_res
211   MCFG_SN76477_FEEDBACK_RES(RES_K(100))               // feedback_res
212   MCFG_SN76477_VCO_PARAMS(2, CAP_N(47), RES_K(1000))  // VCO volt + cap + res
213   MCFG_SN76477_PITCH_VOLTAGE(2)                       // pitch_voltage
214   MCFG_SN76477_SLF_PARAMS(CAP_U(0.1), RES_K(180))     // slf caps + res
215   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(1.00001), RES_K(10000))   // oneshot caps + res
200216   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.1)
201217
202218   MCFG_SOUND_ADD("discrete", DISCRETE, 0) /* Son 1bit*/
trunk/src/mess/drivers/hec2hrp.c
r32772r32773
425425   MCFG_SOUND_ROUTE(0, "mono", 0.25)
426426
427427   MCFG_SOUND_ADD("sn76477", SN76477, 0)
428   MCFG_SOUND_CONFIG(hector_sn76477_interface)
428   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_K(330), CAP_P(390)) // noise + filter
429   MCFG_SN76477_DECAY_RES(RES_K(680))                  // decay_res
430   MCFG_SN76477_ATTACK_PARAMS(CAP_U(47), RES_K(180))   // attack_decay_cap + attack_res
431   MCFG_SN76477_AMP_RES(RES_K(33))                     // amplitude_res
432   MCFG_SN76477_FEEDBACK_RES(RES_K(100))               // feedback_res
433   MCFG_SN76477_VCO_PARAMS(2, CAP_N(47), RES_K(1000))  // VCO volt + cap + res
434   MCFG_SN76477_PITCH_VOLTAGE(2)                       // pitch_voltage
435   MCFG_SN76477_SLF_PARAMS(CAP_U(0.1), RES_K(180))     // slf caps + res
436   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(1.00001), RES_K(10000))   // oneshot caps + res
429437   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.1)
430438
431439   MCFG_SOUND_ADD("discrete", DISCRETE, 0) /* Son 1bit*/
r32772r32773
471479   MCFG_SOUND_ROUTE(0, "mono", 0.25)// Sound level for cassette, as it is in mono => output channel=0
472480
473481   MCFG_SOUND_ADD("sn76477", SN76477, 0)
474   MCFG_SOUND_CONFIG(hector_sn76477_interface)
482   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_K(330), CAP_P(390)) // noise + filter
483   MCFG_SN76477_DECAY_RES(RES_K(680))                  // decay_res
484   MCFG_SN76477_ATTACK_PARAMS(CAP_U(47), RES_K(180))   // attack_decay_cap + attack_res
485   MCFG_SN76477_AMP_RES(RES_K(33))                     // amplitude_res
486   MCFG_SN76477_FEEDBACK_RES(RES_K(100))               // feedback_res
487   MCFG_SN76477_VCO_PARAMS(2, CAP_N(47), RES_K(1000))  // VCO volt + cap + res
488   MCFG_SN76477_PITCH_VOLTAGE(2)                       // pitch_voltage
489   MCFG_SN76477_SLF_PARAMS(CAP_U(0.1), RES_K(180))     // slf caps + res
490   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(1.00001), RES_K(10000))   // oneshot caps + res
475491   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.1)
476492
477493   MCFG_SOUND_ADD("discrete", DISCRETE, 0) // Son 1bit
478   MCFG_DISCRETE_INTF( hec2hrp )
494   MCFG_DISCRETE_INTF(hec2hrp)
479495   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
480496
481497   /* Gestion cassette*/
r32772r32773
531547   MCFG_SOUND_ROUTE(0, "mono", 0.25)// Sound level for cassette, as it is in mono => output channel=0
532548
533549   MCFG_SOUND_ADD("sn76477", SN76477, 0)
534   MCFG_SOUND_CONFIG(hector_sn76477_interface)
550   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_K(330), CAP_P(390)) // noise + filter
551   MCFG_SN76477_DECAY_RES(RES_K(680))                  // decay_res
552   MCFG_SN76477_ATTACK_PARAMS(CAP_U(47), RES_K(180))   // attack_decay_cap + attack_res
553   MCFG_SN76477_AMP_RES(RES_K(33))                     // amplitude_res
554   MCFG_SN76477_FEEDBACK_RES(RES_K(100))               // feedback_res
555   MCFG_SN76477_VCO_PARAMS(2, CAP_N(47), RES_K(1000))  // VCO volt + cap + res
556   MCFG_SN76477_PITCH_VOLTAGE(2)                       // pitch_voltage
557   MCFG_SN76477_SLF_PARAMS(CAP_U(0.1), RES_K(180))     // slf caps + res
558   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(1.00001), RES_K(10000))   // oneshot caps + res
535559   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.1)
536560
537561   MCFG_SOUND_ADD("discrete", DISCRETE, 0) // Son 1bit
r32772r32773
586610   MCFG_SOUND_ROUTE(0, "mono", 0.25)// Sound level for cassette, as it is in mono => output channel=0
587611
588612   MCFG_SOUND_ADD("sn76477", SN76477, 0)
589   MCFG_SOUND_CONFIG(hector_sn76477_interface)
613   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_K(330), CAP_P(390)) // noise + filter
614   MCFG_SN76477_DECAY_RES(RES_K(680))                  // decay_res
615   MCFG_SN76477_ATTACK_PARAMS(CAP_U(47), RES_K(180))   // attack_decay_cap + attack_res
616   MCFG_SN76477_AMP_RES(RES_K(33))                     // amplitude_res
617   MCFG_SN76477_FEEDBACK_RES(RES_K(100))               // feedback_res
618   MCFG_SN76477_VCO_PARAMS(2, CAP_N(47), RES_K(1000))  // VCO volt + cap + res
619   MCFG_SN76477_PITCH_VOLTAGE(2)                       // pitch_voltage
620   MCFG_SN76477_SLF_PARAMS(CAP_U(0.1), RES_K(180))     // slf caps + res
621   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(1.00001), RES_K(10000))   // oneshot caps + res
590622   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.1)
591623
592624   MCFG_SOUND_ADD("discrete", DISCRETE, 0) // Son 1bit
r32772r32773
639671   MCFG_SOUND_ROUTE(0, "mono", 0.25)// Sound level for cassette, as it is in mono => output channel=0
640672
641673   MCFG_SOUND_ADD("sn76477", SN76477, 0)
642   MCFG_SOUND_CONFIG(hector_sn76477_interface)
674   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_K(330), CAP_P(390)) // noise + filter
675   MCFG_SN76477_DECAY_RES(RES_K(680))                  // decay_res
676   MCFG_SN76477_ATTACK_PARAMS(CAP_U(47), RES_K(180))   // attack_decay_cap + attack_res
677   MCFG_SN76477_AMP_RES(RES_K(33))                     // amplitude_res
678   MCFG_SN76477_FEEDBACK_RES(RES_K(100))               // feedback_res
679   MCFG_SN76477_VCO_PARAMS(2, CAP_N(47), RES_K(1000))  // VCO volt + cap + res
680   MCFG_SN76477_PITCH_VOLTAGE(2)                       // pitch_voltage
681   MCFG_SN76477_SLF_PARAMS(CAP_U(0.1), RES_K(180))     // slf caps + res
682   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(1.00001), RES_K(10000))   // oneshot caps + res
643683   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.1)
644684
645685   MCFG_SOUND_ADD("discrete", DISCRETE, 0) // Son 1bit
r32772r32773
695735   MCFG_SOUND_ROUTE(0, "mono", 0.25)// Sound level for cassette, as it is in mono => output channel=0
696736
697737   MCFG_SOUND_ADD("sn76477", SN76477, 0)
698   MCFG_SOUND_CONFIG(hector_sn76477_interface)
738   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_K(330), CAP_P(390)) // noise + filter
739   MCFG_SN76477_DECAY_RES(RES_K(680))                  // decay_res
740   MCFG_SN76477_ATTACK_PARAMS(CAP_U(47), RES_K(180))   // attack_decay_cap + attack_res
741   MCFG_SN76477_AMP_RES(RES_K(33))                     // amplitude_res
742   MCFG_SN76477_FEEDBACK_RES(RES_K(100))               // feedback_res
743   MCFG_SN76477_VCO_PARAMS(2, CAP_N(47), RES_K(1000))  // VCO volt + cap + res
744   MCFG_SN76477_PITCH_VOLTAGE(2)                       // pitch_voltage
745   MCFG_SN76477_SLF_PARAMS(CAP_U(0.1), RES_K(180))     // slf caps + res
746   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(1.00001), RES_K(10000))   // oneshot caps + res
699747   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.1)
700748
701749   MCFG_SOUND_ADD("discrete", DISCRETE, 0) // Son 1bit
trunk/src/mess/drivers/abc80.c
r32772r32773
246246//**************************************************************************
247247
248248//-------------------------------------------------
249//  sn76477_interface csg_intf
250//-------------------------------------------------
251
252static const sn76477_interface csg_intf =
253{
254   RES_K(47),      //  4  noise_res        R26 47k
255   RES_K(330),     //  5  filter_res       R24 330k
256   CAP_P(390),     //  6  filter_cap       C52 390p
257   RES_K(47),      //  7  decay_res        R23 47k
258   CAP_U(10),      //  8  attack_decay_cap C50 10u/35V
259   RES_K(2.2),     // 10  attack_res       R21 2.2k
260   RES_K(33),      // 11  amplitude_res    R19 33k
261   RES_K(10),      // 12  feedback_res     R18 10k
262   0,              // 16  vco_voltage      0V or 2.5V
263   CAP_N(10) ,     // 17  vco_cap          C48 10n
264   RES_K(100),     // 18  vco_res          R20 100k
265   0,              // 19  pitch_voltage    N/C
266   RES_K(220),     // 20  slf_res          R22 220k
267   CAP_U(1),       // 21  slf_cap          C51 1u/35V
268   CAP_U(0.1),     // 23  oneshot_cap      C53 0.1u
269   RES_K(330)      // 24  oneshot_res      R25 330k
270};
271
272
273//-------------------------------------------------
274249//  Z80PIO
275250//-------------------------------------------------
276251
r32772r32773
523498   // sound hardware
524499   MCFG_SPEAKER_STANDARD_MONO("mono")
525500   MCFG_SOUND_ADD(SN76477_TAG, SN76477, 0)
526   MCFG_SOUND_CONFIG(csg_intf)
501   MCFG_SN76477_NOISE_PARAMS(RES_K(47), RES_K(330), CAP_P(390)) // noise + filter: R26 47k - R24 330k - C52 390p
502   MCFG_SN76477_DECAY_RES(RES_K(47))                   //  decay_res: R23 47k
503   MCFG_SN76477_ATTACK_PARAMS(CAP_U(10), RES_K(2.2))   // attack_decay_cap + attack_res: C50 10u/35V - R21 2.2k
504   MCFG_SN76477_AMP_RES(RES_K(33))                     // amplitude_res: R19 33k
505   MCFG_SN76477_FEEDBACK_RES(RES_K(10))                // feedback_res: R18 10k
506   MCFG_SN76477_VCO_PARAMS(0, CAP_N(10), RES_K(100))   // VCO volt + cap + res: 0V or 2.5V - C48 10n - R20 100k
507   MCFG_SN76477_PITCH_VOLTAGE(0)                       // pitch_voltage: N/C
508   MCFG_SN76477_SLF_PARAMS(CAP_U(1), RES_K(220))       // slf caps + res: C51 1u/35V - R22 220k
509   MCFG_SN76477_ONESHOT_PARAMS(CAP_U(0.1), RES_K(330)) // oneshot caps + res: C53 0.1u - R25 330k
527510   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25)
528511
529512   // devices

Previous 199869 Revisions Next


© 1997-2024 The MAME Team