Previous 199869 Revisions Next

r17465 Saturday 25th August, 2012 at 12:53:02 UTC by Tafoid
Continuing new device implementation for SN76496 and clones - sbugger.c, finalizr.c, pingpong.c, galaxold.c, spaceg.c, sg1000a.c, zaxxon.c, retofinv.c, senjyo.c, mrjong.c, sprcros2.c [Osso]
[src/mame/drivers]finalizr.c galaxold.c jpmmps.c mrjong.c pingpong.c retofinv.c sbugger.c senjyo.c sg1000a.c spaceg.c sprcros2.c zaxxon.c

trunk/src/mame/drivers/sbugger.c
r17464r17465
116116
117117static ADDRESS_MAP_START( sbugger_io_map, AS_IO, 8, sbugger_state )
118118   AM_RANGE(0xe0, 0xe7) AM_DEVREADWRITE("i8156", i8155_device, io_r, io_w)
119   AM_RANGE(0xe8, 0xe8) AM_DEVWRITE_LEGACY("sn76489.1", sn76496_w)
120   AM_RANGE(0xe9, 0xe9) AM_DEVWRITE_LEGACY("sn76489.2", sn76496_w)
119   AM_RANGE(0xe8, 0xe8) AM_DEVWRITE("sn76489.1", sn76489_new_device, write)
120   AM_RANGE(0xe9, 0xe9) AM_DEVWRITE("sn76489.2", sn76489_new_device, write)
121121ADDRESS_MAP_END
122122
123123
r17464r17465
223223   DEVCB_DRIVER_LINE_MEMBER(sbugger_state,sbugger_interrupt)
224224};
225225
226/*************************************
227 *
228 *  Sound interface
229 *
230 *************************************/
231 
232 
233//-------------------------------------------------
234//  sn76496_config psg_intf
235//-------------------------------------------------
236
237static const sn76496_config psg_intf =
238{
239    DEVCB_NULL
240};
241
242
226243static MACHINE_CONFIG_START( sbugger, sbugger_state )
227244
228245   MCFG_CPU_ADD("maincpu", I8085A, 6000000)        /* 3.00 MHz??? */
r17464r17465
247264   /* sound hardware */
248265   MCFG_SPEAKER_STANDARD_MONO("mono")
249266
250   MCFG_SOUND_ADD("sn76489.1", SN76489, 3000000)
267   MCFG_SOUND_ADD("sn76489.1", SN76489_NEW, 3000000)
251268   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
252
253   MCFG_SOUND_ADD("sn76489.2", SN76489, 3000000)
269   MCFG_SOUND_CONFIG(psg_intf)
270   
271   MCFG_SOUND_ADD("sn76489.2", SN76489_NEW, 3000000)
254272   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
255
273   MCFG_SOUND_CONFIG(psg_intf)
256274MACHINE_CONFIG_END
257275
258276
trunk/src/mame/drivers/zaxxon.c
r17464r17465
498498static ADDRESS_MAP_START( congo_sound_map, AS_PROGRAM, 8, zaxxon_state )
499499   AM_RANGE(0x0000, 0x1fff) AM_ROM
500500   AM_RANGE(0x4000, 0x47ff) AM_MIRROR(0x1800) AM_RAM
501   AM_RANGE(0x6000, 0x6000) AM_MIRROR(0x1fff) AM_DEVWRITE_LEGACY("sn1", sn76496_w)
501   AM_RANGE(0x6000, 0x6000) AM_MIRROR(0x1fff) AM_DEVWRITE("sn1", sn76496_new_device, write)
502502   AM_RANGE(0x8000, 0x8003) AM_MIRROR(0x1ffc) AM_DEVREADWRITE("ppi8255", i8255_device, read, write)
503   AM_RANGE(0xa000, 0xa000) AM_MIRROR(0x1fff) AM_DEVWRITE_LEGACY("sn2", sn76496_w)
503   AM_RANGE(0xa000, 0xa000) AM_MIRROR(0x1fff) AM_DEVWRITE("sn2", sn76496_new_device, write)
504504ADDRESS_MAP_END
505505
506506
r17464r17465
937937
938938/*************************************
939939 *
940 *  Sound interface
941 *
942 *************************************/
943 
944 
945//-------------------------------------------------
946//  sn76496_config psg_intf
947//-------------------------------------------------
948
949static const sn76496_config psg_intf =
950{
951    DEVCB_NULL
952};
953
954
955/*************************************
956 *
940957 *  Machine driver
941958 *
942959 *************************************/
r17464r17465
10241041   /* sound hardware */
10251042   MCFG_SPEAKER_STANDARD_MONO("mono")
10261043
1027   MCFG_SOUND_ADD("sn1", SN76496, SOUND_CLOCK)
1044   MCFG_SOUND_ADD("sn1", SN76496_NEW, SOUND_CLOCK)
10281045   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
1029
1030   MCFG_SOUND_ADD("sn2", SN76496, SOUND_CLOCK/4)
1046   MCFG_SOUND_CONFIG(psg_intf)
1047   
1048   MCFG_SOUND_ADD("sn2", SN76496_NEW, SOUND_CLOCK/4)
10311049   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
1050   MCFG_SOUND_CONFIG(psg_intf)
10321051
10331052   MCFG_FRAGMENT_ADD(congo_samples)
10341053MACHINE_CONFIG_END
trunk/src/mame/drivers/mrjong.c
r17464r17465
7878static ADDRESS_MAP_START( mrjong_io_map, AS_IO, 8, mrjong_state )
7979   ADDRESS_MAP_GLOBAL_MASK(0xff)
8080   AM_RANGE(0x00, 0x00) AM_READ_PORT("P2") AM_WRITE(mrjong_flipscreen_w)
81   AM_RANGE(0x01, 0x01) AM_READ_PORT("P1") AM_DEVWRITE_LEGACY("sn1", sn76496_w)
82   AM_RANGE(0x02, 0x02) AM_READ_PORT("DSW") AM_DEVWRITE_LEGACY("sn2", sn76496_w)
81   AM_RANGE(0x01, 0x01) AM_READ_PORT("P1") AM_DEVWRITE("sn1", sn76489_new_device, write)
82   AM_RANGE(0x02, 0x02) AM_READ_PORT("DSW") AM_DEVWRITE("sn2", sn76489_new_device, write)
8383   AM_RANGE(0x03, 0x03) AM_READ(io_0x03_r)      // Unknown
8484ADDRESS_MAP_END
8585
r17464r17465
174174
175175/*************************************
176176 *
177 *  Sound interface
178 *
179 *************************************/
180 
181 
182//-------------------------------------------------
183//  sn76496_config psg_intf
184//-------------------------------------------------
185
186static const sn76496_config psg_intf =
187{
188    DEVCB_NULL
189};
190
191
192/*************************************
193 *
177194 *  Machine driver
178195 *
179196 *************************************/
r17464r17465
203220   /* sound hardware */
204221   MCFG_SPEAKER_STANDARD_MONO("mono")
205222
206   MCFG_SOUND_ADD("sn1", SN76489, 15468000/6)
223   MCFG_SOUND_ADD("sn1", SN76489_NEW, 15468000/6)
207224   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
208
209   MCFG_SOUND_ADD("sn2", SN76489, 15468000/6)
225   MCFG_SOUND_CONFIG(psg_intf)
226   
227   MCFG_SOUND_ADD("sn2", SN76489_NEW, 15468000/6)
210228   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
229   MCFG_SOUND_CONFIG(psg_intf)
211230MACHINE_CONFIG_END
212231
213232
trunk/src/mame/drivers/spaceg.c
r17464r17465
401401
402402/*************************************
403403 *
404 *  Sound interface
405 *
406 *************************************/
407 
408 
409//-------------------------------------------------
410//  sn76496_config psg_intf
411//-------------------------------------------------
412
413//static const sn76496_config psg_intf =
414//{
415//    DEVCB_NULL
416//};
417
418
419/*************************************
420 *
404421 *  Machine config
405422 *
406423 *************************************/
r17464r17465
426443   /* sound hardware */
427444//  MCFG_SPEAKER_STANDARD_MONO("mono")
428445
429//  MCFG_SOUND_ADD("sn1", SN76496, 15468480/4)
446//  MCFG_SOUND_ADD("sn1", SN76496_NEW, 15468480/4)
430447//  MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
448//   MCFG_SOUND_CONFIG(psg_intf)
431449
432//  MCFG_SOUND_ADD("sn2", SN76496, 15468480/4)
450//  MCFG_SOUND_ADD("sn2", SN76496_NEW, 15468480/4)
433451//  MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
452//   MCFG_SOUND_CONFIG(psg_intf)
434453
435//  MCFG_SOUND_ADD("sn3", SN76496, 15468480/4)
454//  MCFG_SOUND_ADD("sn3", SN76496_NEW, 15468480/4)
436455//  MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
456//   MCFG_SOUND_CONFIG(psg_intf)
437457
438458//  MCFG_DAC_ADD("dac")
439459//  MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
trunk/src/mame/drivers/senjyo.c
r17464r17465
162162static ADDRESS_MAP_START( senjyo_sound_map, AS_PROGRAM, 8, senjyo_state )
163163   AM_RANGE(0x0000, 0x3fff) AM_ROM
164164   AM_RANGE(0x4000, 0x43ff) AM_RAM
165   AM_RANGE(0x8000, 0x8000) AM_DEVWRITE_LEGACY("sn1", sn76496_w)
166   AM_RANGE(0x9000, 0x9000) AM_DEVWRITE_LEGACY("sn2", sn76496_w)
167   AM_RANGE(0xa000, 0xa000) AM_DEVWRITE_LEGACY("sn3", sn76496_w)
165   AM_RANGE(0x8000, 0x8000) AM_DEVWRITE("sn1", sn76496_new_device, write)
166   AM_RANGE(0x9000, 0x9000) AM_DEVWRITE("sn2", sn76496_new_device, write)
167   AM_RANGE(0xa000, 0xa000) AM_DEVWRITE("sn3", sn76496_new_device, write)
168168   AM_RANGE(0xd000, 0xd000) AM_WRITE(senjyo_volume_w)
169169#if 0
170170   AM_RANGE(0xe000, 0xe000) AM_WRITE_LEGACY(unknown)
r17464r17465
230230static ADDRESS_MAP_START( starforb_sound_map, AS_PROGRAM, 8, senjyo_state )
231231   AM_RANGE(0x0000, 0x3fff) AM_ROM
232232   AM_RANGE(0x4000, 0x43ff) AM_RAM
233   AM_RANGE(0x8000, 0x8000) AM_DEVWRITE_LEGACY("sn1", sn76496_w)
234   AM_RANGE(0x9000, 0x9000) AM_DEVWRITE_LEGACY("sn2", sn76496_w)
235   AM_RANGE(0xa000, 0xa000) AM_DEVWRITE_LEGACY("sn3", sn76496_w)
233   AM_RANGE(0x8000, 0x8000) AM_DEVWRITE("sn1", sn76496_new_device, write)
234   AM_RANGE(0x9000, 0x9000) AM_DEVWRITE("sn2", sn76496_new_device, write)
235   AM_RANGE(0xa000, 0xa000) AM_DEVWRITE("sn3", sn76496_new_device, write)
236236   AM_RANGE(0xd000, 0xd000) AM_WRITE(senjyo_volume_w)
237237#if 0
238238   AM_RANGE(0xe000, 0xe000) AM_WRITE_LEGACY(unknown)
r17464r17465
551551GFXDECODE_END
552552
553553
554/*************************************
555 *
556 *  Sound interface
557 *
558 *************************************/
559 
560 
561//-------------------------------------------------
562//  sn76496_config psg_intf
563//-------------------------------------------------
554564
565static const sn76496_config psg_intf =
566{
567    DEVCB_NULL
568};
569
570
555571static MACHINE_CONFIG_START( senjyo, senjyo_state )
556572
557573   /* basic machine hardware */
r17464r17465
585601   /* sound hardware */
586602   MCFG_SPEAKER_STANDARD_MONO("mono")
587603
588   MCFG_SOUND_ADD("sn1", SN76496, 2000000)
604   MCFG_SOUND_ADD("sn1", SN76496_NEW, 2000000)
589605   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
606   MCFG_SOUND_CONFIG(psg_intf)
590607
591   MCFG_SOUND_ADD("sn2", SN76496, 2000000)
608   MCFG_SOUND_ADD("sn2", SN76496_NEW, 2000000)
592609   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
610   MCFG_SOUND_CONFIG(psg_intf)
593611
594   MCFG_SOUND_ADD("sn3", SN76496, 2000000)
612   MCFG_SOUND_ADD("sn3", SN76496_NEW, 2000000)
595613   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
614   MCFG_SOUND_CONFIG(psg_intf)
596615
597616   MCFG_DAC_ADD("dac")
598617   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.05)
trunk/src/mame/drivers/finalizr.c
r17464r17465
106106   AM_RANGE(0x0813, 0x0813) AM_READ_PORT("DSW1")
107107   AM_RANGE(0x0818, 0x0818) AM_WRITE(watchdog_reset_w)
108108   AM_RANGE(0x0819, 0x0819) AM_WRITE(finalizr_coin_w)
109   AM_RANGE(0x081a, 0x081a) AM_DEVWRITE_LEGACY("snsnd", sn76496_w)   /* This address triggers the SN chip to read the data port. */
109   AM_RANGE(0x081a, 0x081a) AM_DEVWRITE("snsnd", sn76489a_new_device, write)   /* This address triggers the SN chip to read the data port. */
110110   AM_RANGE(0x081b, 0x081b) AM_WRITENOP      /* Loads the snd command into the snd latch */
111111   AM_RANGE(0x081c, 0x081c) AM_WRITE(finalizr_i8039_irq_w)   /* custom sound chip */
112112   AM_RANGE(0x081d, 0x081d) AM_WRITE(soundlatch_byte_w)         /* custom sound chip */
r17464r17465
235235GFXDECODE_END
236236
237237
238/*************************************
239 *
240 *  Sound interface
241 *
242 *************************************/
243 
244 
245//-------------------------------------------------
246//  sn76496_config psg_intf
247//-------------------------------------------------
238248
249static const sn76496_config psg_intf =
250{
251    DEVCB_NULL
252};
253
254
239255static MACHINE_START( finalizr )
240256{
241257   finalizr_state *state = machine.driver_data<finalizr_state>();
r17464r17465
291307   /* sound hardware */
292308   MCFG_SPEAKER_STANDARD_MONO("mono")
293309
294   MCFG_SOUND_ADD("snsnd", SN76489A, XTAL_18_432MHz/12)
310   MCFG_SOUND_ADD("snsnd", SN76489A_NEW, XTAL_18_432MHz/12)
295311   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.75)
312   MCFG_SOUND_CONFIG(psg_intf)
296313
297314   MCFG_DAC_ADD("dac")
298315   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.65)
trunk/src/mame/drivers/galaxold.c
r17464r17465
886886ADDRESS_MAP_END
887887
888888static ADDRESS_MAP_START( racknrol_io, AS_IO, 8, galaxold_state )
889   AM_RANGE(0x1d, 0x1d) AM_DEVWRITE_LEGACY("sn1", sn76496_w)
890   AM_RANGE(0x1e, 0x1e) AM_DEVWRITE_LEGACY("sn2", sn76496_w)
891   AM_RANGE(0x1f, 0x1f) AM_DEVWRITE_LEGACY("sn3", sn76496_w)
889   AM_RANGE(0x1d, 0x1d) AM_DEVWRITE("sn1", sn76496_new_device, write)
890   AM_RANGE(0x1e, 0x1e) AM_DEVWRITE("sn2", sn76496_new_device, write)
891   AM_RANGE(0x1f, 0x1f) AM_DEVWRITE("sn3", sn76496_new_device, write)
892892   AM_RANGE(0x20, 0x3f) AM_WRITE(racknrol_tiles_bank_w) AM_SHARE("racknrol_tbank")
893893   AM_RANGE(S2650_SENSE_PORT, S2650_SENSE_PORT) AM_READ_PORT("SENSE")
894894ADDRESS_MAP_END
r17464r17465
910910static ADDRESS_MAP_START( hexpoola_io, AS_IO, 8, galaxold_state )
911911   AM_RANGE(0x00, 0x00) AM_READNOP
912912   AM_RANGE(0x20, 0x3f) AM_WRITE(racknrol_tiles_bank_w) AM_SHARE("racknrol_tbank")
913   AM_RANGE(S2650_DATA_PORT, S2650_DATA_PORT) AM_READ(hexpoola_data_port_r) AM_DEVWRITE_LEGACY("snsnd", sn76496_w)
913   AM_RANGE(S2650_DATA_PORT, S2650_DATA_PORT) AM_READ(hexpoola_data_port_r) AM_DEVWRITE("snsnd", sn76496_new_device, write)
914914   AM_RANGE(S2650_SENSE_PORT, S2650_SENSE_PORT) AM_READ_PORT("SENSE")
915915ADDRESS_MAP_END
916916
r17464r17465
938938static ADDRESS_MAP_START( bullsdrtg_io_map, AS_IO, 8, galaxold_state )
939939   AM_RANGE(0x00, 0x00) AM_READNOP
940940   AM_RANGE(0x20, 0x3f) AM_WRITE(racknrol_tiles_bank_w) AM_SHARE("racknrol_tbank")
941   AM_RANGE(S2650_DATA_PORT, S2650_DATA_PORT) AM_READ(bullsdrtg_data_port_r) AM_DEVWRITE_LEGACY("snsnd", sn76496_w)
941   AM_RANGE(S2650_DATA_PORT, S2650_DATA_PORT) AM_READ(bullsdrtg_data_port_r) AM_DEVWRITE("snsnd", sn76496_new_device, write)
942942   AM_RANGE(S2650_SENSE_PORT, S2650_SENSE_PORT) AM_READ_PORT("SENSE")
943943ADDRESS_MAP_END
944944
r17464r17465
21392139   GFXDECODE_ENTRY( "gfx1", 0x4000, _4in1_spritelayout,    0, 8 )
21402140GFXDECODE_END
21412141
2142
2143/*************************************
2144 *
2145 *  Sound interface
2146 *
2147 *************************************/
2148 
2149 
2150//-------------------------------------------------
2151//  sn76496_config psg_intf
2152//-------------------------------------------------
2153
2154static const sn76496_config psg_intf =
2155{
2156    DEVCB_NULL
2157};
2158
2159
21422160static const ay8910_interface bongo_ay8910_interface =
21432161{
21442162   AY8910_LEGACY_OUTPUT,
r17464r17465
24292447
24302448   /* sound hardware */
24312449   MCFG_SPEAKER_STANDARD_MONO("mono")
2432   MCFG_SOUND_ADD("sn1", SN76496, PIXEL_CLOCK/2)
2450   MCFG_SOUND_ADD("sn1", SN76496_NEW, PIXEL_CLOCK/2)
24332451   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
2452   MCFG_SOUND_CONFIG(psg_intf)
24342453
2435   MCFG_SOUND_ADD("sn2", SN76496, PIXEL_CLOCK/2)
2454   MCFG_SOUND_ADD("sn2", SN76496_NEW, PIXEL_CLOCK/2)
24362455   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
2456   MCFG_SOUND_CONFIG(psg_intf)
24372457
2438   MCFG_SOUND_ADD("sn3", SN76496, PIXEL_CLOCK/2)
2458   MCFG_SOUND_ADD("sn3", SN76496_NEW, PIXEL_CLOCK/2)
24392459   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
2460   MCFG_SOUND_CONFIG(psg_intf)
24402461MACHINE_CONFIG_END
24412462
24422463static MACHINE_CONFIG_DERIVED( ckongg, galaxian )
r17464r17465
24842505
24852506   /* sound hardware */
24862507   MCFG_SPEAKER_STANDARD_MONO("mono")
2487   MCFG_SOUND_ADD("snsnd", SN76496, PIXEL_CLOCK/2)
2508   MCFG_SOUND_ADD("snsnd", SN76496_NEW, PIXEL_CLOCK/2)
24882509   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
2510   MCFG_SOUND_CONFIG(psg_intf)
24892511MACHINE_CONFIG_END
24902512
24912513static MACHINE_CONFIG_DERIVED( bullsdrtg, hexpoola )
trunk/src/mame/drivers/sg1000a.c
r17464r17465
146146
147147static ADDRESS_MAP_START( io_map, AS_IO, 8, sg1000a_state )
148148   ADDRESS_MAP_GLOBAL_MASK(0xff)
149   AM_RANGE(0x7f, 0x7f) AM_DEVWRITE_LEGACY("snsnd", sn76496_w)
149   AM_RANGE(0x7f, 0x7f) AM_DEVWRITE("snsnd", sn76489_new_device, write)
150150   AM_RANGE(0xbe, 0xbe) AM_DEVREADWRITE("tms9928a", tms9928a_device, vram_read, vram_write)
151151   AM_RANGE(0xbf, 0xbf) AM_DEVREADWRITE("tms9928a", tms9928a_device, register_read, register_write)
152152   AM_RANGE(0xdc, 0xdf) AM_DEVREADWRITE("ppi8255", i8255_device, read, write)
r17464r17465
265265   DEVCB_DRIVER_MEMBER(sg1000a_state,sg1000a_coin_counter_w)
266266};
267267
268
268269/*************************************
269270 *
271 *  Sound interface
272 *
273 *************************************/
274 
275 
276//-------------------------------------------------
277//  sn76496_config psg_intf
278//-------------------------------------------------
279
280static const sn76496_config psg_intf =
281{
282    DEVCB_NULL
283};
284
285
286/*************************************
287 *
270288 *  Machine drivers
271289 *
272290 *************************************/
r17464r17465
287305   /* sound hardware */
288306   MCFG_SPEAKER_STANDARD_MONO("mono")
289307
290   MCFG_SOUND_ADD("snsnd", SN76489, XTAL_3_579545MHz)
308   MCFG_SOUND_ADD("snsnd", SN76489_NEW, XTAL_3_579545MHz)
291309   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
310   MCFG_SOUND_CONFIG(psg_intf)
292311MACHINE_CONFIG_END
293312
294313/*************************************
trunk/src/mame/drivers/pingpong.c
r17464r17465
9898   AM_RANGE(0xa980, 0xa980) AM_READ_PORT("DSW2")
9999   AM_RANGE(0xa000, 0xa000) AM_WRITE(coin_w)   /* coin counters + irq enables */
100100   AM_RANGE(0xa200, 0xa200) AM_WRITENOP      /* SN76496 data latch */
101   AM_RANGE(0xa400, 0xa400) AM_DEVWRITE_LEGACY("snsnd", sn76496_w)   /* trigger read */
101   AM_RANGE(0xa400, 0xa400) AM_DEVWRITE("snsnd", sn76496_new_device, write)   /* trigger read */
102102   AM_RANGE(0xa600, 0xa600) AM_WRITE(watchdog_reset_w)
103103ADDRESS_MAP_END
104104
r17464r17465
119119   AM_RANGE(0xa100, 0xa100) AM_READ_PORT("IN2")
120120   AM_RANGE(0xa180, 0xa180) AM_READ_PORT("IN3")
121121   AM_RANGE(0xa200, 0xa200) AM_WRITENOP      /* SN76496 data latch */
122   AM_RANGE(0xa400, 0xa400) AM_DEVWRITE_LEGACY("snsnd", sn76496_w)   /* trigger read */
122   AM_RANGE(0xa400, 0xa400) AM_DEVWRITE("snsnd", sn76496_new_device, write)   /* trigger read */
123123   AM_RANGE(0xa600, 0xa600) AM_WRITE(watchdog_reset_w)
124124ADDRESS_MAP_END
125125
r17464r17465
442442GFXDECODE_END
443443
444444
445/*************************************
446 *
447 *  Sound interface
448 *
449 *************************************/
450 
451 
452//-------------------------------------------------
453//  sn76496_config psg_intf
454//-------------------------------------------------
445455
456static const sn76496_config psg_intf =
457{
458    DEVCB_NULL
459};
460
461
446462static MACHINE_CONFIG_START( pingpong, pingpong_state )
447463
448464   /* basic machine hardware */
r17464r17465
467483   /* sound hardware */
468484   MCFG_SPEAKER_STANDARD_MONO("mono")
469485
470   MCFG_SOUND_ADD("snsnd", SN76496, 18432000/8)
486   MCFG_SOUND_ADD("snsnd", SN76496_NEW, 18432000/8)
471487   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
488   MCFG_SOUND_CONFIG(psg_intf)
472489MACHINE_CONFIG_END
473490
474491/* too fast! */
trunk/src/mame/drivers/retofinv.c
r17464r17465
137137   AM_RANGE(0x2000, 0x27ff) AM_RAM
138138   AM_RANGE(0x4000, 0x4000) AM_READ(soundlatch_byte_r)
139139   AM_RANGE(0x6000, 0x6000) AM_WRITE(cpu2_m6000_w)
140   AM_RANGE(0x8000, 0x8000) AM_DEVWRITE_LEGACY("sn1", sn76496_w)
141   AM_RANGE(0xa000, 0xa000) AM_DEVWRITE_LEGACY("sn2", sn76496_w)
140   AM_RANGE(0x8000, 0x8000) AM_DEVWRITE("sn1", sn76496_new_device, write)
141   AM_RANGE(0xa000, 0xa000) AM_DEVWRITE("sn2", sn76496_new_device, write)
142142   AM_RANGE(0xe000, 0xffff) AM_ROM       /* space for diagnostic ROM */
143143ADDRESS_MAP_END
144144
r17464r17465
344344      device_set_input_line(device, 0, ASSERT_LINE);
345345}
346346
347
348/*************************************
349 *
350 *  Sound interface
351 *
352 *************************************/
353 
354 
355//-------------------------------------------------
356//  sn76496_config psg_intf
357//-------------------------------------------------
358
359static const sn76496_config psg_intf =
360{
361    DEVCB_NULL
362};
363
364
347365static MACHINE_CONFIG_START( retofinv, retofinv_state )
348366
349367   /* basic machine hardware */
r17464r17465
381399   /* sound hardware */
382400   MCFG_SPEAKER_STANDARD_MONO("mono")
383401
384   MCFG_SOUND_ADD("sn1", SN76496, 18432000/6)
402   MCFG_SOUND_ADD("sn1", SN76496_NEW, 18432000/6)
385403   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.80)
386
387   MCFG_SOUND_ADD("sn2", SN76496, 18432000/6)
404   MCFG_SOUND_CONFIG(psg_intf)
405   
406   MCFG_SOUND_ADD("sn2", SN76496_NEW, 18432000/6)
388407   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.80)
408   MCFG_SOUND_CONFIG(psg_intf)
389409MACHINE_CONFIG_END
390410
391411
trunk/src/mame/drivers/jpmmps.c
r17464r17465
146146#define SOUND_CLOCK 2000000
147147#define DUART_CLOCK 2000000
148148
149
150/*************************************
151 *
152 *  Sound interface
153 *
154 *************************************/
155 
156 
157//-------------------------------------------------
158//  sn76496_config psg_intf
159//-------------------------------------------------
160
161static const sn76496_config psg_intf =
162{
163    DEVCB_NULL
164};
165
166
149167static MACHINE_CONFIG_START( jpmmps, jpmmps_state )
150168
151169   /* basic machine hardware */
r17464r17465
164182
165183   MCFG_SPEAKER_STANDARD_MONO("mono")
166184
167   MCFG_SOUND_ADD("sn", SN76489, SOUND_CLOCK)
185   MCFG_SOUND_ADD("sn", SN76489_NEW, SOUND_CLOCK)
168186   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00)
187   MCFG_SOUND_CONFIG(psg_intf)
169188
170189MACHINE_CONFIG_END
171190
trunk/src/mame/drivers/sprcros2.c
r17464r17465
112112
113113static ADDRESS_MAP_START( sprcros2_master_io_map, AS_IO, 8, sprcros2_state )
114114   ADDRESS_MAP_GLOBAL_MASK(0xff)
115   AM_RANGE(0x00, 0x00) AM_READ_PORT("P1") AM_DEVWRITE_LEGACY("sn1", sn76496_w)
116   AM_RANGE(0x01, 0x01) AM_READ_PORT("P2") AM_DEVWRITE_LEGACY("sn2", sn76496_w)
117   AM_RANGE(0x02, 0x02) AM_READ_PORT("EXTRA") AM_DEVWRITE_LEGACY("sn3", sn76496_w)
115   AM_RANGE(0x00, 0x00) AM_READ_PORT("P1") AM_DEVWRITE("sn1", sn76489_new_device, write)
116   AM_RANGE(0x01, 0x01) AM_READ_PORT("P2") AM_DEVWRITE("sn2", sn76489_new_device, write)
117   AM_RANGE(0x02, 0x02) AM_READ_PORT("EXTRA") AM_DEVWRITE("sn3", sn76489_new_device, write)
118118   AM_RANGE(0x04, 0x04) AM_READ_PORT("DSW1")
119119   AM_RANGE(0x05, 0x05) AM_READ_PORT("DSW2")
120120   AM_RANGE(0x07, 0x07) AM_WRITE(sprcros2_m_port7_w)
r17464r17465
228228   GFXDECODE_ENTRY( "gfx3", 0, sprcros2_fglayout,     512, 64 )
229229GFXDECODE_END
230230
231/*************************************
232 *
233 *  Sound interface
234 *
235 *************************************/
236 
237 
238//-------------------------------------------------
239//  sn76496_config psg_intf
240//-------------------------------------------------
241
242static const sn76496_config psg_intf =
243{
244    DEVCB_NULL
245};
246
247
231248static TIMER_DEVICE_CALLBACK( sprcros2_m_interrupt )
232249{
233250   sprcros2_state *state = timer.machine().driver_data<sprcros2_state>();
r17464r17465
293310   /* sound hardware */
294311   MCFG_SPEAKER_STANDARD_MONO("mono")
295312
296   MCFG_SOUND_ADD("sn1", SN76489, 10000000/4)
313   MCFG_SOUND_ADD("sn1", SN76489_NEW, 10000000/4)
297314   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
315   MCFG_SOUND_CONFIG(psg_intf)
298316
299   MCFG_SOUND_ADD("sn2", SN76489, 10000000/4)
317   MCFG_SOUND_ADD("sn2", SN76489_NEW, 10000000/4)
300318   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
319   MCFG_SOUND_CONFIG(psg_intf)
301320
302   MCFG_SOUND_ADD("sn3", SN76489, 10000000/4)
321   MCFG_SOUND_ADD("sn3", SN76489_NEW, 10000000/4)
303322   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
323   MCFG_SOUND_CONFIG(psg_intf)
304324MACHINE_CONFIG_END
305325
306326ROM_START( sprcros2 )

Previous 199869 Revisions Next


© 1997-2024 The MAME Team