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

« back to all changes in this revision

Viewing changes to src/mame/drivers/overdriv.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:
163
163
        if (ACCESSING_BITS_0_7)
164
164
        {
165
165
                /* bit 0 probably enables the second 68000 */
166
 
                cputag_set_input_line(space->machine, "maincpu", INPUT_LINE_RESET, (data & 0x01) ? CLEAR_LINE : ASSERT_LINE);
 
166
                cputag_set_input_line(space->machine, "sub", INPUT_LINE_RESET, (data & 0x01) ? CLEAR_LINE : ASSERT_LINE);
167
167
 
168
168
                /* bit 1 is clear during service mode - function unknown */
169
169
 
211
211
 
212
212
static WRITE16_HANDLER( overdriv_cpuB_irq5_w )
213
213
{
214
 
        cputag_set_input_line(space->machine, "audiocpu", 5, HOLD_LINE);
 
214
        cputag_set_input_line(space->machine, "sub", 5, HOLD_LINE);
215
215
}
216
216
 
217
217
static WRITE16_HANDLER( overdriv_cpuB_irq6_w )
218
218
{
219
 
        cputag_set_input_line(space->machine, "audiocpu", 6, HOLD_LINE);
 
219
        cputag_set_input_line(space->machine, "sub", 6, HOLD_LINE);
220
220
}
221
221
 
222
222