Previous 199869 Revisions Next

r18090 Sunday 23rd September, 2012 at 11:57:23 UTC by Robbbert
ZAC_1 - Added nvram
[src/mame/drivers]zac_1.c

trunk/src/mame/drivers/zac_1.c
r18089r18090
22
33    Zaccaria Generation 1
44
5    Made working in Sept 2012 [Robbbert]
6
57    These games allow for up to 4 players at the same time.
68    Setup is via a menu - there are no dipswitches.
79    If you see 6 and 9 flashing at start- this indicates the battery is flat,
r18089r18090
2123ToDo:
2224- Outputs
2325- Sound
24- Proper Artwork
25- Battery Backup
2626
2727**************************************************************************************/
2828
2929
3030#include "machine/genpin.h"
3131#include "cpu/s2650/s2650.h"
32#include "machine/nvram.h"
3233#include "zac_1.lh"
3334
3435class zac_1_state : public driver_device
r18089r18090
246247   MCFG_CPU_ADD("maincpu", S2650, 6000000/2)
247248   MCFG_CPU_PROGRAM_MAP(zac_1_map)
248249   MCFG_CPU_IO_MAP(zac_1_io)
250   MCFG_NVRAM_ADD_0FILL("ram")
251
249252   MCFG_TIMER_ADD_PERIODIC("zac_1_inttimer", zac_1_inttimer, attotime::from_hz(200))
250253   MCFG_TIMER_ADD_PERIODIC("zac_1_outtimer", zac_1_outtimer, attotime::from_hz(187500))
251254

Previous 199869 Revisions Next


© 1997-2024 The MAME Team