~ubuntu-branches/ubuntu/lucid/sdlmame/lucid

« back to all changes in this revision

Viewing changes to src/mame/drivers/taitojc.c

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Falco
  • Date: 2009-11-03 17:10:15 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20091103171015-6hop4ory5lxnumpn
Tags: 0.135-0ubuntu1
* New upstream release - Closes (LP: #403212)
* debian/watch: unstable releases are no longer detected
* mame.ini: added the cheat subdirectories to cheatpath so zipped
  cheatfiles will be searched too
* renamed crsshair subdirectory to crosshair to reflect upstream change
* mame.ini: renamed references to crosshair subdirectory (see above)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1293
1293
        cpu_set_input_line(device, 6, HOLD_LINE);
1294
1294
}
1295
1295
 
 
1296
static const hc11_config taitojc_config =
 
1297
{
 
1298
        1, //has extended I/O
 
1299
        1280 //internal RAM size
 
1300
};
 
1301
 
 
1302
 
1296
1303
static MACHINE_DRIVER_START( taitojc )
1297
1304
        MDRV_CPU_ADD("maincpu", M68040, 25000000)
1298
1305
        MDRV_CPU_PROGRAM_MAP(taitojc_map)
1301
1308
 
1302
1309
        TAITO_F3_SOUND_SYSTEM_CPU(16000000)
1303
1310
 
1304
 
        MDRV_CPU_ADD("sub", MC68HC11, 4000000)
 
1311
        MDRV_CPU_ADD("sub", MC68HC11, 4000000) //MC68HC11M0
1305
1312
        MDRV_CPU_PROGRAM_MAP(hc11_pgm_map)
1306
1313
        MDRV_CPU_IO_MAP(hc11_io_map)
 
1314
        MDRV_CPU_CONFIG(taitojc_config)
1307
1315
 
1308
1316
        MDRV_CPU_ADD("dsp", TMS32051, 50000000)
1309
1317
        MDRV_CPU_PROGRAM_MAP(tms_program_map)