summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-12-14 00:44:52 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-12-14 00:44:52 +0000
commit5b13d131ea4f7c03d5ae7c8ddb1d5b203fd603ee (patch)
tree859c6b153a1af447e81dcd1cd486e111fd21e221 /src
parented2768338f53f3ffae78b319f5d56c1602732cee (diff)
02730: fiveside: locks up at rom check
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/ultrsprt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/ultrsprt.c b/src/mame/drivers/ultrsprt.c
index 32e35105d7f..771742d72d5 100644
--- a/src/mame/drivers/ultrsprt.c
+++ b/src/mame/drivers/ultrsprt.c
@@ -97,6 +97,8 @@ static MACHINE_START( ultrsprt )
cpu_set_info_int(machine->cpu[0], CPUINFO_INT_PPC_FASTRAM_READONLY, 0);
}
+
+
static ADDRESS_MAP_START( ultrsprt_map, ADDRESS_SPACE_PROGRAM, 32 )
AM_RANGE(0x00000000, 0x0007ffff) AM_RAM AM_BASE(&vram)
AM_RANGE(0x70000000, 0x70000003) AM_READWRITE(eeprom_r, eeprom_w)
@@ -267,13 +269,11 @@ static void sound_irq_callback(running_machine *machine, int irq)
if (irq == 0)
/*generic_pulse_irq_line(machine->cpu[1], INPUT_LINE_IRQ5)*/;
else
- generic_pulse_irq_line(machine->cpu[1], INPUT_LINE_IRQ6);
+ cpu_set_input_line(machine->cpu[1], INPUT_LINE_IRQ6, HOLD_LINE);
}
static DRIVER_INIT( ultrsprt )
{
- cpu_set_input_line(machine->cpu[1], INPUT_LINE_HALT, ASSERT_LINE);
-
K056800_init(machine, sound_irq_callback);
}