summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2012-04-08 13:04:57 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2012-04-08 13:04:57 +0000
commit8d66a9445a44da9438637aa17f3cd421564c8f5a (patch)
treeb509be0c219f1927350e6a4a5a1092c5b9e66bb3
parent86b2abfdbb2bd494dc39da7beb015edc0dbe7835 (diff)
misc sc4/68307 updates + prelim peripheral hookups, allows most sc4 sets to run their sound rom checks
-rw-r--r--src/emu/cpu/m68000/68307bus.c15
-rw-r--r--src/emu/cpu/m68000/68307bus.h2
-rw-r--r--src/emu/cpu/m68000/68307ser.c47
-rw-r--r--src/emu/cpu/m68000/68307ser.h12
-rw-r--r--src/emu/cpu/m68000/68307sim.c96
-rw-r--r--src/emu/cpu/m68000/68307sim.h2
-rw-r--r--src/emu/cpu/m68000/68307tmu.c49
-rw-r--r--src/emu/cpu/m68000/m68000.h7
-rw-r--r--src/emu/cpu/m68000/m68kcpu.c48
-rw-r--r--src/emu/sound/ymz280b.c2
-rw-r--r--src/mame/drivers/bfm_sc4.c601
-rw-r--r--src/mame/drivers/bfm_sc4h.c140
-rw-r--r--src/mame/includes/bfm_sc45.h854
-rw-r--r--src/mame/mame.mak3
14 files changed, 1132 insertions, 746 deletions
diff --git a/src/emu/cpu/m68000/68307bus.c b/src/emu/cpu/m68000/68307bus.c
index 1cbb5dc1337..f1ec4925609 100644
--- a/src/emu/cpu/m68000/68307bus.c
+++ b/src/emu/cpu/m68000/68307bus.c
@@ -13,10 +13,21 @@ READ16_HANDLER( m68307_internal_mbus_r )
if (mbus)
{
int pc = cpu_get_pc(&space->device());
- logerror("%08x m68307_internal_mbus_r %08x, (%04x)\n", pc, offset*2,mem_mask);
+
+
+ switch (offset<<1)
+ {
+ case m68307BUS_MBSR:
+ logerror("%08x m68307_internal_mbus_r %08x, (%04x) (MBSR - Status Register)\n", pc, offset*2,mem_mask);
+ return space->machine().rand();
+
+ default:
+ logerror("%08x m68307_internal_mbus_r %08x, (%04x)\n", pc, offset*2,mem_mask);
+ return 0x0000;
+ }
}
- return 0x0000;
+ return 0xffff;
}
WRITE16_HANDLER( m68307_internal_mbus_w )
diff --git a/src/emu/cpu/m68000/68307bus.h b/src/emu/cpu/m68000/68307bus.h
index 20af5f7e65f..201aabe01f4 100644
--- a/src/emu/cpu/m68000/68307bus.h
+++ b/src/emu/cpu/m68000/68307bus.h
@@ -1,4 +1,6 @@
+#define m68307BUS_MBSR (0x06)
+
READ16_HANDLER( m68307_internal_mbus_r );
WRITE16_HANDLER( m68307_internal_mbus_w );
diff --git a/src/emu/cpu/m68000/68307ser.c b/src/emu/cpu/m68000/68307ser.c
index a7ff81b772a..4b11e027609 100644
--- a/src/emu/cpu/m68000/68307ser.c
+++ b/src/emu/cpu/m68000/68307ser.c
@@ -13,7 +13,25 @@ READ16_HANDLER( m68307_internal_serial_r )
if (serial)
{
int pc = cpu_get_pc(&space->device());
- logerror("%08x m68307_internal_serial_r %08x, (%04x)\n", pc, offset*2,mem_mask);
+
+ switch (offset<<1)
+ {
+ case m68307SER_USR_UCSR:
+ logerror("%08x m68307_internal_serial_r %08x, (%04x) (USR - Status Register)\n", pc, offset*2,mem_mask);
+ return space->machine().rand();
+
+ case m68307SER_URB_UTB:
+ logerror("%08x m68307_internal_serial_r %08x, (%04x) (URB - Recieve Buffer)\n", pc, offset*2,mem_mask);
+ return 0xff;//space->machine().rand();
+
+ case m68307SER_UISR_UIMR:
+ logerror("%08x m68307_internal_serial_r %08x, (%04x) (UISR - Interrupt Status Register)\n", pc, offset*2,mem_mask);
+ return space->machine().rand() & 0x87;
+
+ default:
+ logerror("%08x m68307_internal_serial_r %08x, (%04x)\n", pc, offset*2,mem_mask);
+ break;
+ }
}
return 0x0000;
@@ -25,10 +43,33 @@ WRITE16_HANDLER( m68307_internal_serial_w )
m68307_serial* serial = m68k->m68307SERIAL;
assert(serial != NULL);
+ int pc = cpu_get_pc(&space->device());
+
if (serial)
{
- int pc = cpu_get_pc(&space->device());
- logerror("%08x m68307_internal_serial_w %08x, %04x (%04x)\n", pc, offset*2,data,mem_mask);
+ switch (offset<<1)
+ {
+ case m68307SER_USR_UCSR:
+ logerror("%08x m68307_internal_serial_r %08x, (%04x) (UCSR - Clock Select Register)\n", pc, offset*2,mem_mask);
+ break;
+
+ case m68307SER_URB_UTB:
+ logerror("%08x m68307_internal_serial_w %08x, %04x (%04x) (UTB - Transmit Buffer)\n", pc, offset*2,data,mem_mask);
+ break;
+
+ case m68307SER_UISR_UIMR:
+ logerror("%08x m68307_internal_serial_w %08x, %04x (%04x) (UIMR - Interrupt Mask Register)\n", pc, offset*2,data,mem_mask);
+ break;
+
+ case m68307SER_UIVR:
+ logerror("%08x m68307_internal_serial_w %08x, %04x (%04x) (UIVR - Interrupt Vector Register)\n", pc, offset*2,data,mem_mask);
+ COMBINE_DATA(&serial->m_uivr);
+ break;
+
+ default:
+ logerror("%08x m68307_internal_serial_w %08x, %04x (%04x)\n", pc, offset*2,data,mem_mask);
+ }
+
}
}
diff --git a/src/emu/cpu/m68000/68307ser.h b/src/emu/cpu/m68000/68307ser.h
index fbcb13a7164..27fbbf33382 100644
--- a/src/emu/cpu/m68000/68307ser.h
+++ b/src/emu/cpu/m68000/68307ser.h
@@ -1,10 +1,20 @@
+#define m68307SER_USR_UCSR (0x02)
+#define m68307SER_URB_UTB (0x06)
+
+#define m68307SER_UISR_UIMR (0x0a)
+
+#define m68307SER_UIVR (0x18)
+
READ16_HANDLER( m68307_internal_serial_r );
WRITE16_HANDLER( m68307_internal_serial_w );
class m68307_serial
{
- public: void reset(void);
+ public:
+ void reset(void);
+ UINT16 m_uivr;
+
};
diff --git a/src/emu/cpu/m68000/68307sim.c b/src/emu/cpu/m68000/68307sim.c
index 413a3b958f3..32500eacc69 100644
--- a/src/emu/cpu/m68000/68307sim.c
+++ b/src/emu/cpu/m68000/68307sim.c
@@ -11,12 +11,16 @@ READ16_HANDLER( m68307_internal_sim_r )
assert(sim != NULL);
int pc = cpu_get_pc(&space->device());
- logerror("%08x m68307_internal_sim_r %08x, (%04x)\n", pc, offset*2,mem_mask);
if (sim)
{
switch (offset<<1)
{
+ case m68307SIM_PADAT: return sim->read_padat(space, mem_mask);
+ case m68307SIM_PBDAT: return sim->read_pbdat(space, mem_mask);
+
+ case m68307SIM_LICR2: return (sim->m_licr2);
+
case m68307SIM_BR0: return (sim->m_br[0]);
case m68307SIM_OR0: return (sim->m_or[0]);
case m68307SIM_BR1: return (sim->m_br[1]);
@@ -25,6 +29,11 @@ READ16_HANDLER( m68307_internal_sim_r )
case m68307SIM_OR2: return (sim->m_or[2]);
case m68307SIM_BR3: return (sim->m_br[3]);
case m68307SIM_OR3: return (sim->m_or[3]);
+
+ default:
+ logerror("%08x m68307_internal_sim_r %08x, (%04x)\n", pc, offset*2,mem_mask);
+ return 0xff;
+
}
}
@@ -32,11 +41,6 @@ READ16_HANDLER( m68307_internal_sim_r )
return 0x0000;
}
- m68307_porta_read_callback m_m68307_porta_r;
- m68307_porta_write_callback m_m68307_porta_w;
- m68307_portb_read_callback m_m68307_portb_r;
- m68307_portb_write_callback m_m68307_portb_w;
-
WRITE16_HANDLER( m68307_internal_sim_w )
{
m68ki_cpu_core *m68k = m68k_get_safe_token(&space->device());
@@ -145,6 +149,33 @@ void m68307_sim::write_paddr(UINT16 data, UINT16 mem_mask)
COMBINE_DATA(&m_paddr);
}
+
+UINT16 m68307_sim::read_padat(address_space *space, UINT16 mem_mask)
+{
+ int pc = cpu_get_pc(&space->device());
+ m68ki_cpu_core *m68k = m68k_get_safe_token(&space->device());
+
+ if (m68k->m_m68307_porta_r)
+ {
+ // for general purpose bits, if configured as 'output' then anything output gets latched
+ // and anything configured as input is read from the port
+ UINT8 outputbits = m_paddr;
+ UINT8 inputbits = ~m_paddr;
+ UINT8 indat = m68k->m_m68307_porta_r(space, 0) & inputbits;
+ UINT8 outdat = m_padat & outputbits;
+
+ // dedicated bits behave in a different way.. todo
+ UINT8 general_purpose_bits = ~m_pacnt;
+ return ((indat | outdat) & general_purpose_bits);
+ }
+ else
+ {
+ logerror("%08x m68307_internal_sim_r (%04x) (Port A (8-bit) Data Register - PADAT)\n", pc, mem_mask);
+ }
+ return 0xffff;
+}
+
+
void m68307_sim::write_padat(address_space *space, UINT16 data, UINT16 mem_mask)
{
int pc = cpu_get_pc(&space->device());
@@ -171,6 +202,32 @@ void m68307_sim::write_pbddr(UINT16 data, UINT16 mem_mask)
COMBINE_DATA(&m_pbddr);
}
+UINT16 m68307_sim::read_pbdat(address_space *space, UINT16 mem_mask)
+{
+ int pc = cpu_get_pc(&space->device());
+ m68ki_cpu_core *m68k = m68k_get_safe_token(&space->device());
+
+ if (m68k->m_m68307_portb_r)
+ {
+ // for general purpose bits, if configured as 'output' then anything output gets latched
+ // and anything configured as input is read from the port
+ UINT16 outputbits = m_pbddr;
+ UINT16 inputbits = ~m_pbddr;
+ UINT16 indat = m68k->m_m68307_portb_r(space, 0, mem_mask) & inputbits;
+ UINT16 outdat = m_pbdat & outputbits;
+
+ // dedicated bits behave in a different way.. todo
+ UINT16 general_purpose_bits = ~m_pbcnt;
+ return ((indat | outdat) & general_purpose_bits);
+ }
+ else
+ {
+ logerror("%08x m68307_internal_sim_r (%04x) (Port B (16-bit) Data Register - PBDAT)\n", pc, mem_mask);
+ }
+ return 0xffff;
+}
+
+
void m68307_sim::write_pbdat(address_space *space, UINT16 data, UINT16 mem_mask)
{
int pc = cpu_get_pc(&space->device());
@@ -206,17 +263,24 @@ void m68307_sim::write_licr1(UINT16 data, UINT16 mem_mask)
void m68307_sim::write_licr2(UINT16 data, UINT16 mem_mask)
{
COMBINE_DATA(&m_licr2);
- data = m_licr2;
- logerror("m_licr2 value %04x : Details :\n", data);
- logerror("int8ipl %01x\n", (data>>0)&7);
- logerror("pir8 %01x\n", (data>>3)&1);
- logerror("int7ipl %01x\n", (data>>4)&7);
- logerror("pir7 %01x\n", (data>>7)&1);
- logerror("int6ipl %01x\n", (data>>8)&7);
- logerror("pir6 %01x\n", (data>>11)&1);
- logerror("int5ipl %01x\n", (data>>12)&7);
- logerror("pir5 %01x\n", (data>>15)&1);
+ UINT16 newdata = m_licr2;
+ logerror("m_licr2 value %04x : Details :\n", newdata);
+ logerror("int8ipl %01x\n", (newdata>>0)&7);
+ logerror("pir8 %01x\n", (newdata>>3)&1);
+ logerror("int7ipl %01x\n", (newdata>>4)&7);
+ logerror("pir7 %01x\n", (newdata>>7)&1);
+ logerror("int6ipl %01x\n", (newdata>>8)&7);
+ logerror("pir6 %01x\n", (newdata>>11)&1);
+ logerror("int5ipl %01x\n", (newdata>>12)&7);
+ logerror("pir5 %01x\n", (newdata>>15)&1);
logerror("\n");
+
+ if (data & 0x0008) m_licr2 = m_licr2 & ~0x0008;
+ if (data & 0x0080) m_licr2 = m_licr2 & ~0x0080;
+ if (data & 0x0800) m_licr2 = m_licr2 & ~0x0800;
+ if (data & 0x8000) m_licr2 = m_licr2 & ~0x8000;
+
+
}
diff --git a/src/emu/cpu/m68000/68307sim.h b/src/emu/cpu/m68000/68307sim.h
index 5b12bd77326..76b26391288 100644
--- a/src/emu/cpu/m68000/68307sim.h
+++ b/src/emu/cpu/m68000/68307sim.h
@@ -51,10 +51,12 @@ class m68307_sim
void write_pacnt(UINT16 data, UINT16 mem_mask);
void write_paddr(UINT16 data, UINT16 mem_mask);
+ UINT16 read_padat(address_space *space, UINT16 mem_mask);
void write_padat(address_space *space, UINT16 data, UINT16 mem_mask);
void write_pbcnt(UINT16 data, UINT16 mem_mask);
void write_pbddr(UINT16 data, UINT16 mem_mask);
+ UINT16 read_pbdat(address_space *space, UINT16 mem_mask);
void write_pbdat(address_space *space, UINT16 data, UINT16 mem_mask);
diff --git a/src/emu/cpu/m68000/68307tmu.c b/src/emu/cpu/m68000/68307tmu.c
index 96a7947f3ec..74370482e79 100644
--- a/src/emu/cpu/m68000/68307tmu.c
+++ b/src/emu/cpu/m68000/68307tmu.c
@@ -97,40 +97,32 @@ WRITE16_HANDLER( m68307_internal_timer_w )
}
}
-
-// printf("%d\n", (UINT32)m68k->device->total_cycles());
-
}
static TIMER_CALLBACK( m68307_timer0_callback )
{
-// printf("timer0\n");
-
legacy_cpu_device *dev = (legacy_cpu_device *)ptr;
m68ki_cpu_core* m68k = m68k_get_safe_token(dev);
-
-
-
- int prioritylevel = (m68k->m68307SIM->m_picr & 0x7000)>>12;
- int vector = (m68k->m68307SIM->m_pivr & 0x00f0) | 0xa;
-
-
-
m68307_single_timer* tptr = &m68k->m68307TIMER->singletimer[0];
tptr->regs[m68307TIMER_TMR] |= 0x2;
- m68307_set_interrupt(dev, prioritylevel, vector);
-
+
+ m68307_timer0_interrupt(dev);
- tptr->mametimer->adjust(m68k->device->cycles_to_attotime(100000));
+ tptr->mametimer->adjust(m68k->device->cycles_to_attotime(20000));
}
static TIMER_CALLBACK( m68307_timer1_callback )
{
-// int prioritylevel = (m68k->m68307SIM->m_picr & 0x0700)>>8;
-// int vector = (m68k->m68307SIM->m_pivr & 0x00f0) | 0xb;
+ legacy_cpu_device *dev = (legacy_cpu_device *)ptr;
+ m68ki_cpu_core* m68k = m68k_get_safe_token(dev);
+ m68307_single_timer* tptr = &m68k->m68307TIMER->singletimer[1];
+ tptr->regs[m68307TIMER_TMR] |= 0x2;
+
+ m68307_timer1_interrupt(dev);
+
+ tptr->mametimer->adjust(m68k->device->cycles_to_attotime(20000));
- printf("timer1\n");
}
static TIMER_CALLBACK( m68307_wd_timer_callback )
@@ -140,12 +132,6 @@ static TIMER_CALLBACK( m68307_wd_timer_callback )
void m68307_timer::init(legacy_cpu_device *device)
{
-
- //m68ki_cpu_core *m68k;
-
- //m68k = m68k_get_safe_token(device);
-
-
m68307_single_timer* tptr;
tptr = &singletimer[0];
@@ -163,21 +149,16 @@ void m68307_timer::init(legacy_cpu_device *device)
UINT16 m68307_timer::read_tcn(UINT16 mem_mask, int which)
{
-// return 0;
- return 0x411d;
-// return 0x3a98;
+ // we should return the current timer value by
+ // calculating what it should be based on the time
+ // since it was last set
+ return 0x3a98;
}
void m68307_timer::write_ter(UINT16 data, UINT16 mem_mask, int which)
{
-// m68ki_cpu_core* m68k = m68k_get_safe_token(parent);
m68307_single_timer* tptr = &singletimer[which];
-
-// UINT16 ter = tptr->regs[m68307TIMER_TMR;
if (data & 0x2) tptr->regs[m68307TIMER_TMR] &= ~0x2;
-
-// COMBINE_DATA(&tptr->regs[m68307TIMER_TMR]);
-
}
void m68307_timer::write_tmr(UINT16 data, UINT16 mem_mask, int which)
diff --git a/src/emu/cpu/m68000/m68000.h b/src/emu/cpu/m68000/m68000.h
index 3def75ccd79..90e870fe70f 100644
--- a/src/emu/cpu/m68000/m68000.h
+++ b/src/emu/cpu/m68000/m68000.h
@@ -143,6 +143,13 @@ UINT16 m68k_get_fc(device_t *device);
void m68307_set_port_callbacks(device_t *device, m68307_porta_read_callback porta_r, m68307_porta_write_callback m_m68307_porta_w, m68307_portb_read_callback portb_r, m68307_portb_write_callback m_m68307_portb_w);
UINT16 m68307_get_cs(device_t *device, offs_t address);
void m68307_set_interrupt(device_t *device, int level, int vector);
+void m68307_timer0_interrupt(legacy_cpu_device *cpudev);
+void m68307_timer1_interrupt(legacy_cpu_device *cpudev);
+void m68307_serial_interrupt(legacy_cpu_device *cpudev);
+void m68307_mbus_interrupt(legacy_cpu_device *cpudev);
+void m68307_licr2_interrupt(legacy_cpu_device *cpudev);
+
+
typedef int (*instruction_hook_t)(device_t *device, offs_t curpc);
void m68k_set_instruction_hook(device_t *device, instruction_hook_t ihook);
diff --git a/src/emu/cpu/m68000/m68kcpu.c b/src/emu/cpu/m68000/m68kcpu.c
index 2b763af8e5a..38c1750e134 100644
--- a/src/emu/cpu/m68000/m68kcpu.c
+++ b/src/emu/cpu/m68000/m68kcpu.c
@@ -1930,11 +1930,59 @@ CPU_GET_INFO( m68301 )
}
}
+
+
+
void m68307_set_interrupt(device_t *device, int level, int vector)
{
device_set_input_line_and_vector(device, level, HOLD_LINE, vector);
}
+void m68307_timer0_interrupt(legacy_cpu_device *cpudev)
+{
+ m68ki_cpu_core* m68k = m68k_get_safe_token(cpudev);
+ int prioritylevel = (m68k->m68307SIM->m_picr & 0x7000)>>12;
+ int vector = (m68k->m68307SIM->m_pivr & 0x00f0) | 0xa;
+ m68307_set_interrupt(cpudev, prioritylevel, vector);
+}
+
+void m68307_timer1_interrupt(legacy_cpu_device *cpudev)
+{
+ m68ki_cpu_core* m68k = m68k_get_safe_token(cpudev);
+ int prioritylevel = (m68k->m68307SIM->m_picr & 0x0700)>>8;
+ int vector = (m68k->m68307SIM->m_pivr & 0x00f0) | 0xb;
+ m68307_set_interrupt(cpudev, prioritylevel, vector);
+}
+
+void m68307_serial_interrupt(legacy_cpu_device *cpudev)
+{
+ m68ki_cpu_core* m68k = m68k_get_safe_token(cpudev);
+ int prioritylevel = (m68k->m68307SIM->m_picr & 0x0070)>>4;
+ int vector = (m68k->m68307SERIAL->m_uivr);
+ m68307_set_interrupt(cpudev, prioritylevel, vector);
+}
+
+void m68307_mbus_interrupt(legacy_cpu_device *cpudev)
+{
+ m68ki_cpu_core* m68k = m68k_get_safe_token(cpudev);
+ int prioritylevel = (m68k->m68307SIM->m_picr & 0x0007)>>0;
+ int vector = (m68k->m68307SIM->m_pivr & 0x00f0) | 0xd;
+ m68307_set_interrupt(cpudev, prioritylevel, vector);
+}
+
+void m68307_licr2_interrupt(legacy_cpu_device *cpudev)
+{
+ m68ki_cpu_core* m68k = m68k_get_safe_token(cpudev);
+ int prioritylevel = (m68k->m68307SIM->m_licr2 & 0x0007)>>0;
+ int vector = (m68k->m68307SIM->m_pivr & 0x00f0) | 0x9;
+ m68k->m68307SIM->m_licr2 |= 0x8;
+
+
+ m68307_set_interrupt(cpudev, prioritylevel, vector);
+}
+
+
+
static CPU_INIT( m68307 )
{
m68ki_cpu_core *m68k = m68k_get_safe_token(device);
diff --git a/src/emu/sound/ymz280b.c b/src/emu/sound/ymz280b.c
index fca87ea115c..37d956673d0 100644
--- a/src/emu/sound/ymz280b.c
+++ b/src/emu/sound/ymz280b.c
@@ -1017,7 +1017,7 @@ READ8_DEVICE_HANDLER( ymz280b_r )
{
/* read from external memory */
UINT8 result;
- if (chip->ext_ram_read.isnull())
+ if (!chip->ext_ram_read.isnull())
result = chip->ext_ram_read(chip->rom_readback_addr);
else
result = ymz280b_read_memory(chip->region_base, chip->region_size, chip->rom_readback_addr);
diff --git a/src/mame/drivers/bfm_sc4.c b/src/mame/drivers/bfm_sc4.c
index a45457ef2a5..f62f43fa77c 100644
--- a/src/mame/drivers/bfm_sc4.c
+++ b/src/mame/drivers/bfm_sc4.c
@@ -1371,7 +1371,7 @@ ROM_START( sc4cburn )
ROM_REGION( 0x400000, "maincpu", ROMREGION_ERASEFF )
ROM_LOAD16_BYTE( "96000038.lo", 0x00001, 0x080000, CRC(e311ce43) SHA1(c9395c886d76a8aabe35a874f10489cdc02bbd35) )
ROM_LOAD16_BYTE( "96000039.hi", 0x00000, 0x080000, CRC(0f3815a9) SHA1(7b30e5f246a953c864a074981718f9540ba22daf) )
- sc_cburn_others
+ sc_hotpr_others
ROM_END
@@ -1379,7 +1379,7 @@ ROM_START( sc4cburna )
ROM_REGION( 0x400000, "maincpu", ROMREGION_ERASEFF )
ROM_LOAD16_BYTE( "96000040.odd", 0x00001, 0x080000, CRC(da99424b) SHA1(3c74bf35f64a3bc7d301f53a4307c8c4c73059c9) )
ROM_LOAD16_BYTE( "96000041.evn", 0x00000, 0x080000, CRC(49c6d054) SHA1(88985743f6e56f5c9557a75bb8e0861659d5be28) )
- sc_cburn_others
+ sc_hotpr_others
ROM_END
@@ -2145,7 +2145,7 @@ ROM_START( sc4cashg )
ROM_REGION( 0x400000, "maincpu", ROMREGION_ERASEFF )
ROM_LOAD16_BYTE( "95408508.lo", 0x00001, 0x080000, CRC(6d96beb0) SHA1(da274c53fce937e01a095693003ecb67379a7980) )
ROM_LOAD16_BYTE( "95408509.hi", 0x00000, 0x080000, CRC(084450b4) SHA1(553b2a10e36b0c1f26b0c05c4d2b218f4c5b24b1) )
- sc_cashm_others
+ sc_cashm_german_others
ROM_END
@@ -4746,32 +4746,34 @@ ROM_START( sc4feverh )
sc_fever_others
ROM_END
+ROM_START( sc4feverk )
+ ROM_REGION( 0x400000, "maincpu", ROMREGION_ERASEFF )
+ ROM_LOAD16_BYTE( "95407012.lo", 0x00001, 0x080000, CRC(d6c56e82) SHA1(9e3fa0cfc7c9541b9637110677fa0b2f0911e450) )
+ ROM_LOAD16_BYTE( "95407013.hi", 0x00000, 0x080000, CRC(4bf15184) SHA1(e01acf9551209161692d204723debb85d0822f10) )
+ sc_fever_others
+ROM_END
+
+
ROM_START( sc4feveri )
ROM_REGION( 0x400000, "maincpu", ROMREGION_ERASEFF )
ROM_LOAD16_BYTE( "95406360.lo", 0x00001, 0x080000, CRC(b0ab3f6b) SHA1(48bb1faba0917d16558221f4c0d1cd6a3fa72767) )
ROM_LOAD16_BYTE( "95406361.hi", 0x00000, 0x080000, CRC(88874cc3) SHA1(8afe9b666eac553380f9bb80459491a7b4811793) )
- sc_fever_others
+ sc_fever7157_others
ROM_END
ROM_START( sc4feverj )
ROM_REGION( 0x400000, "maincpu", ROMREGION_ERASEFF )
ROM_LOAD16_BYTE( "95406782.lo", 0x00001, 0x080000, CRC(7346b7d3) SHA1(24ff011729419b454430d7c4f92c4618338d7ec0) )
ROM_LOAD16_BYTE( "95406783.hi", 0x00000, 0x080000, CRC(fe3d7b7c) SHA1(7618444990a85d227850009393e130d128fe035f) )
- sc_fever_others
+ sc_fever7157_others
ROM_END
-ROM_START( sc4feverk )
- ROM_REGION( 0x400000, "maincpu", ROMREGION_ERASEFF )
- ROM_LOAD16_BYTE( "95407012.lo", 0x00001, 0x080000, CRC(d6c56e82) SHA1(9e3fa0cfc7c9541b9637110677fa0b2f0911e450) )
- ROM_LOAD16_BYTE( "95407013.hi", 0x00000, 0x080000, CRC(4bf15184) SHA1(e01acf9551209161692d204723debb85d0822f10) )
- sc_fever_others
-ROM_END
ROM_START( sc4feverl )
ROM_REGION( 0x400000, "maincpu", ROMREGION_ERASEFF )
ROM_LOAD16_BYTE( "95408920.lo", 0x00001, 0x080000, CRC(e29cf521) SHA1(c0b2211030caf5ff37bb6ffb813a0dfd7b72963d) )
ROM_LOAD16_BYTE( "95408921.hi", 0x00000, 0x080000, CRC(db3025ee) SHA1(e21f56adee4eda6a77618e82f6b029955e939741) )
- sc_fever_others
+ sc_fever7157_others
ROM_END
@@ -22725,8 +22727,6 @@ GAME( 200?, sc4gslamd ,sc4gslam, sc4, sc4, sc4, ROT0, "BFM","Grandslam Club (BFM
GAME( 200?, sc4gslame ,sc4gslam, sc4, sc4, sc4, ROT0, "BFM","Grandslam Club (BFM) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4gslamf ,sc4gslam, sc4, sc4, sc4, ROT0, "BFM","Grandslam Club (BFM) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
-// PR1227 4PLAY ART13 95004313 4PLAY PR1227
-GAME( 200?, sc4ivply ,0, sc4, sc4, sc4, ROT0, "BFM","4 Play (Bellfruit) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
// PR2540 ABRACADABRA ABRA SOUNDS ABRACADABRA
GAME( 200?, sc4abra ,0, sc4, sc4, sc4, ROT0, "Qps","Abracadabra (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -22736,37 +22736,18 @@ GAME( 200?, sc4abrac ,sc4abra, sc4, sc4, sc4, ROT0, "Qps","Abracadabra (Qps) (Sc
GAME( 200?, sc4abrad ,sc4abra, sc4, sc4, sc4, ROT0, "Qps","Abracadabra (Qps) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4abrae ,sc4abra, sc4, sc4, sc4, ROT0, "Qps","Abracadabra (Qps) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-// PR2070 ACES HIGH ACEHI SOUNDS ACES HIGH
-GAME( 200?, sc4acesh ,0, sc4, sc4, sc4, ROT0, "Mazooma","Aces High (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4acesha ,sc4acesh, sc4, sc4, sc4, ROT0, "Mazooma","Aces High (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4aceshb ,sc4acesh, sc4, sc4, sc4, ROT0, "Mazooma","Aces High (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4aceshc ,sc4acesh, sc4, sc4, sc4, ROT0, "Mazooma","Aces High (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-// PR2118 ADRENALIN COTL SOUNDS ADRENALIN
-GAME( 200?, sc4adren ,0, sc4, sc4, sc4, ROT0, "Mazooma","Adrenalin (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4adrena ,sc4adren, sc4, sc4, sc4, ROT0, "Mazooma","Adrenalin (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4adrenb ,sc4adren, sc4, sc4, sc4, ROT0, "Mazooma","Adrenalin (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4adrenc ,sc4adren, sc4, sc4, sc4, ROT0, "Mazooma","Adrenalin (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
// PR7068 ALADDIN'S CAVE CAVE SOUNDS
GAME( 200?, sc4alad ,0, sc4, sc4, sc4, ROT0, "Mazooma","Aladdin's Cave (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4alada ,sc4alad, sc4, sc4, sc4, ROT0, "Mazooma","Aladdin's Cave (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-// PR2154 CLUB AROUND BOAR CLB AROUND BOARD CLUB AROU SOUNDS
-GAME( 200?, sc4a40cl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Around The Board In 40 Days Club (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4a40cla ,sc4a40cl, sc4, sc4, sc4, ROT0, "Mazooma","Around The Board In 40 Days Club (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4a40clb ,sc4a40cl, sc4, sc4, sc4, ROT0, "Mazooma","Around The Board In 40 Days Club (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4a40clc ,sc4a40cl, sc4, sc4, sc4, ROT0, "Mazooma","Around The Board In 40 Days Club (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-
- // PR1225 AZTEC CASINO
-GAME( 200?, sc4aztec ,0, sc4, sc4, sc4, ROT0, "BFM","Aztec (Casino) (Bellfruit) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
- // PR1215 AZTEC EURO
-GAME( 200?, sc4azteca ,sc4aztec, sc4, sc4, sc4, ROT0, "BFM","Aztec (Euro) (Bellfruit) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
// PR2538 BACK OF THE NET V011 BACKOFTHENETSND BACK OF THE NET
GAME( 200?, sc4botn ,0, sc4, sc4, sc4, ROT0, "Qps","Back Of The Net (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4botna ,sc4botn, sc4, sc4, sc4, ROT0, "Qps","Back Of The Net (Qps) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
// PR2034 BANK ROLL ROL SOUNDS BANK ROLL
GAME( 200?, sc4broll ,0, sc4, sc4, sc4, ROT0, "Mazooma","Bank Roll (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4brolla ,sc4broll, sc4, sc4, sc4, ROT0, "Mazooma","Bank Roll (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
@@ -22774,49 +22755,11 @@ GAME( 200?, sc4brollb ,sc4broll, sc4, sc4, sc4, ROT0, "Mazooma","Bank Roll (Mazo
GAME( 200?, sc4brollc ,sc4broll, sc4, sc4, sc4, ROT0, "Mazooma","Bank Roll (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-// PR???? BANKETYBANK V1.0 BANKETYBANKSND BANKETY BANK
-GAME( 200?, sc4bankb ,0, sc4, sc4, sc4, ROT0, "Qps","Bankety Bank (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bankba ,sc4bankb, sc4, sc4, sc4, ROT0, "Qps","Bankety Bank (Qps) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-
-// PR2094 BEDAZZLED BEDZ SOUNDS BEDAZZLED
-GAME( 200?, sc4bed ,0, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4beda ,sc4bed, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bedb ,sc4bed, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bedc ,sc4bed, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bedd ,sc4bed, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bede ,sc4bed, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled (Mazooma) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-
-
-// PR2102 CLUB BEDAZZLED CBED SOUNDS CLUB BEDAZZLED
-GAME( 200?, sc4bedcl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled Club (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-// PR2102 CLUB BEDAZZLED CLUB BEDAZZLED CLUB CBED SOUNDS CLUB BEDAZZLED
-GAME( 200?, sc4bedcla ,sc4bedcl, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled Club (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bedclb ,sc4bedcl, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled Club (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bedclc ,sc4bedcl, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled Club (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bedcld ,sc4bedcl, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled Club (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-
-// PR2083 BIG BLASTER BBST SOUNDS BIG BLASTER
-GAME( 200?, sc4bblas ,0, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bblasa ,sc4bblas, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bblasb ,sc4bblas, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bblasc ,sc4bblas, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bblasd ,sc4bblas, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bblase ,sc4bblas, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bblasf ,sc4bblas, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
-
// PR2501 BIG DEAL BIGDEALSND BIG DEAL
GAME( 200?, sc4bigdl ,0, sc4, sc4, sc4, ROT0, "Qps","Big Deal (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4bigdla ,sc4bigdl, sc4, sc4, sc4, ROT0, "Qps","Big Deal (Qps) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-// PR21xx BINGO BELLE SSPT SOUNDS BINGO BELLE
-GAME( 200?, sc4bingb ,0, sc4, sc4, sc4, ROT0, "Mazooma","Bingo Belle (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bingba ,sc4bingb, sc4, sc4, sc4, ROT0, "Mazooma","Bingo Belle (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-
-// PR???? BANKETYBANK 011 BANKETYBANKSND BANKETY BANK
-GAME( 200?, sc4bb ,0, sc4, sc4, sc4, ROT0, "Qps","Blankety Bank (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bba ,sc4bb, sc4, sc4, sc4, ROT0, "Qps","Blankety Bank (Qps) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-
// PRXXXX CLUB BANKETY BANK VER1.0 CLUBBANKSND CLUB BANKETYBANK
GAME( 200?, sc4bbclb ,0, sc4, sc4, sc4, ROT0, "Qps","Blankety Bank Club (V1.0) (Qps) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
// PRXXXX CLUB BANKETY BANK VER1.1 CLUBBANKSND CLUB BANKETYBANK
@@ -22843,9 +22786,6 @@ GAME( 200?, sc4bluec ,sc4blue, sc4, sc4, sc4, ROT0, "Mazooma","Blue Rinse (Mazoo
GAME( 200?, sc4blued ,sc4blue, sc4, sc4, sc4, ROT0, "Mazooma","Blue Rinse (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4bluee ,sc4blue, sc4, sc4, sc4, ROT0, "Mazooma","Blue Rinse (Mazooma) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-// PR2298 CLUB BOBBY DAZZLER CLUB BOB DAZZLER CLUB CLUBBOBD SOUNDS
-GAME( 200?, sc4bobcl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Bobby Dazzler Club (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bobcla ,sc4bobcl, sc4, sc4, sc4, ROT0, "Mazooma","Bobby Dazzler Club (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
// PR7036GOLDEN X GOLDEN X ARCADE BARX SOUNDS GOLDEN X
GAME( 200?, sc4bonbx ,0, sc4, sc4, sc4, ROT0, "Mazooma","Bonus Bar X (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -22863,9 +22803,6 @@ GAME( 200?, sc4bonbxj ,sc4bonbx, sc4, sc4, sc4, ROT0, "Mazooma","Bonus Bar X (Ma
GAME( 200?, sc4bonbxk ,sc4bonbx, sc4, sc4, sc4, ROT0, "Mazooma","Bonus Bar X (Mazooma) (Scorpion 4) (set 12)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4bonbxl ,sc4bonbx, sc4, sc4, sc4, ROT0, "Mazooma","Bonus Bar X (Mazooma) (Scorpion 4) (set 13)", GAME_IS_SKELETON_MECHANICAL )
-// PR2033 BREAK THE SPELL SPELL SOUNDS BREAK THE SPELL
-GAME( 200?, sc4brksp ,0, sc4, sc4, sc4, ROT0, "Mazooma","Break The Spell (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4brkspa ,sc4brksp, sc4, sc4, sc4, ROT0, "Mazooma","Break The Spell (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
// PR2023.GERMAN BRIX...........PR2023,German BRIX,......PR2023 SOUNDS V1 (non-standard header)
GAME( 200?, sc4brix ,0, sc4, sc4, sc4, ROT0, "Nova","Brix (German) (Nova) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -22878,17 +22815,6 @@ GAME( 200?, sc4bugsa ,sc4bugs, sc4, sc4, sc4, ROT0, "BFM","Bugs Money (Bellfruit
GAME( 200?, sc4bugsb ,sc4bugs, sc4, sc4, sc4, ROT0, "BFM","Bugs Money (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4bugsc ,sc4bugs, sc4, sc4, sc4, ROT0, "BFM","Bugs Money (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-// PR1753 CLUB BULLSEYE BULLSEYE CLUB PR1751 BULLSEYE SOUNDS11 BULLSYE
-GAME( 200?, sc4bulcl ,0, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bulcla ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bulclb ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bulclc ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bulcld ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bulcle ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bulclf ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bulclg ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 8)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bulclh ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 9)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4bulcli ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 10)", GAME_IS_SKELETON_MECHANICAL )
// PR7017CASINO CAN CAN CASH PR7017,Casino CAN CAN CASH, LINE SOUNDS CAN CAN CASH
GAME( 200?, sc4canca ,0, sc4, sc4, sc4, ROT0, "Mazooma","Can Can Cash Casino (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -22906,9 +22832,6 @@ GAME( 200?, sc4captnd ,sc4captn, sc4, sc4, sc4, ROT0, "Qps","Captain Cash (Qps)
GAME( 200?, sc4captne ,sc4captn, sc4, sc4, sc4, ROT0, "Qps","Captain Cash (Qps) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4captnf ,sc4captn, sc4, sc4, sc4, ROT0, "Qps","Captain Cash (Qps) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
-// PR1113 CARRY ON WINNING PR1113 CARRY ON WINNING SOUNDS11
-GAME( 200?, sc4carry ,0, sc4, sc4, sc4, ROT0, "BFM","Carry On Winning (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4carrya ,sc4carry, sc4, sc4, sc4, ROT0, "BFM","Carry On Winning (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
// PR2534 CASH AND MOUSE V041 CASHANDMOUSESND CASH AND MOUSE
GAME( 200?, sc4cmous ,0, sc4, sc4, sc4, ROT0, "Qps","Cash & Mouse (V041) (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -22917,10 +22840,22 @@ GAME( 200?, sc4cmousb ,sc4cmous, sc4, sc4, sc4, ROT0, "Qps","Cash & Mouse (V041)
GAME( 200?, sc4cmousa ,sc4cmous, sc4, sc4, sc4, ROT0, "Qps","Cash & Mouse (V011) (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4cmousc ,sc4cmous, sc4, sc4, sc4, ROT0, "Qps","Cash & Mouse (V011) (Qps) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR6911 HOT PROPERTY PR6911 HOT PROPERTY SOUNDS11 HOT PROPERTY
+GAME( 200?, sc4hotpr ,0, sc4, sc4, sc4, ROT0, "BFM","Hot Property (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4hotpra ,sc4hotpr, sc4, sc4, sc4, ROT0, "BFM","Hot Property (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4hotprb ,sc4hotpr, sc4, sc4, sc4, ROT0, "BFM","Hot Property (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4hotprc ,sc4hotpr, sc4, sc4, sc4, ROT0, "BFM","Hot Property (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4hotprd ,sc4hotpr, sc4, sc4, sc4, ROT0, "BFM","Hot Property (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4hotpre ,sc4hotpr, sc4, sc4, sc4, ROT0, "BFM","Hot Property (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+
+// is this some kind of reworked version of Hot Property?
+
// PR6911 HOT PROPERTY PR6911 HOT PROPERTY SOUNDS11 $$ CASH 'N' BURN
-GAME( 200?, sc4cburn ,0, sc4, sc4, sc4, ROT0, "Qps","Cash 'n' Burn (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cburn ,sc4hotpr, sc4, sc4, sc4, ROT0, "Qps","Cash 'n' Burn (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
// PR6911 HOT PROPERTY V4.0 PR6911 HOT PROPERTY SOUNDS11 $ CASH 'N' BURN
-GAME( 200?, sc4cburna ,sc4cburn, sc4, sc4, sc4, ROT0, "Qps","Cash 'n' Burn (Qps) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cburna ,sc4hotpr, sc4, sc4, sc4, ROT0, "Qps","Cash 'n' Burn (Qps) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
// PR6815 CASH N FRUIT PR6815 CASH N FRUIT SOUNDS11
GAME( 200?, sc4cnfr ,0, sc4, sc4, sc4, ROT0, "BFM","Cash 'n' Fruit (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -22968,20 +22903,6 @@ GAME( 200?, sc4cadq ,sc4cad, sc4, sc4, sc4, ROT0, "Qps","Cash Adder (V043) (Qps
GAME( 200?, sc4cadcl ,0, sc4, sc4, sc4, ROT0, "Qps","Cash Adder Club (411) (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4cadcla ,sc4cadcl, sc4, sc4, sc4, ROT0, "Qps","Cash Adder Club (411) (Qps) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-// PR1349 CLUB CASH BAZAAR PR1349 CLUB CASH BAZAAR SOUNDS11
-GAME( 200?, sc4cbaz ,0, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cbaza ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cbazb ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cbazc ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cbazd ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cbaze ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cbazf ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cbazg ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 8)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cbazh ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 9)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cbazi ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 10)", GAME_IS_SKELETON_MECHANICAL )
-// PR1349 CLUB CASH BAZAAR CLUB CASH BAZAAR CLUB PR1349 CLUB CASH BAZAAR SOUNDS11
-GAME( 200?, sc4cbazj ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 11)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cbazk ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 12)", GAME_IS_SKELETON_MECHANICAL )
// PR7038 CASH CONNEXION MTOM SOUNDS
GAME( 200?, sc4cconx ,0, sc4, sc4, sc4, ROT0, "Mazooma","Cash Connexion (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -22995,19 +22916,7 @@ GAME( 200?, sc4ccrus ,0, sc4, sc4, sc4, ROT0, "Mazooma","Cash Crusaders (Mazoo
GAME( 200?, sc4ccrusa ,sc4ccrus, sc4, sc4, sc4, ROT0, "Mazooma","Cash Crusaders (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4ccrusb ,sc4ccrus, sc4, sc4, sc4, ROT0, "Mazooma","Cash Crusaders (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-// PR2020 CASH ERUPTION ERUP SOUNDS CASH ERUPTION
-GAME( 200?, sc4cerup ,0, sc4, sc4, sc4, ROT0, "Mazooma","Cash Eruption (Mazooma) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
-// PR2076 CASH EXPLOSION CEXP SOUNDS CASH EXPLSION
-GAME( 200?, sc4cexpl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2076) (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cexpla ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2076) (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cexplb ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2076) (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cexplc ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2076) (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cexplf ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2076) (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cexplg ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2076) (Mazooma) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-// PR2120 CASH EXPLOSION CEXP SOUNDS CASH EXPLSION
-GAME( 200?, sc4cexpld ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2120) (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cexple ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2120) (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
// PR7108 CASH IN HAND PR7108 CASH IN HAND SOUNDS11 CASH IN HAND
GAME( 200?, sc4chand ,0, sc4, sc4, sc4, ROT0, "BFM","Cash In Hand (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -23027,15 +22936,6 @@ GAME( 200?, sc4cinvg ,sc4cinv, sc4, sc4, sc4, ROT0, "BFM","Cash Invaders (Bellfr
GAME( 200?, sc4cinvh ,sc4cinv, sc4, sc4, sc4, ROT0, "BFM","Cash Invaders (Bellfruit) (Scorpion 4) (set 9)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4cinvi ,sc4cinv, sc4, sc4, sc4, ROT0, "BFM","Cash Invaders (Bellfruit) (Scorpion 4) (set 10)", GAME_IS_SKELETON_MECHANICAL )
-// PR2118 CASH ON THE LASH COTL SOUNDS CASH ON THE LASH
-GAME( 200?, sc4clash ,0, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4clasha ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4clashb ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4clashc ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4clashd ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4clashe ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4clashf ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4clashg ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 8)", GAME_IS_SKELETON_MECHANICAL )
// PR2061 CASHRAKER RAKERSND CASHRAKER
@@ -23061,9 +22961,6 @@ GAME( 200?, sc4crcld ,sc4crcl, sc4, sc4, sc4, ROT0, "Qps","Cash Raker Club (V1.3
GAME( 200?, sc4crcle ,sc4crcl, sc4, sc4, sc4, ROT0, "Qps","Cash Raker Club (411) (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4crclf ,sc4crcl, sc4, sc4, sc4, ROT0, "Qps","Cash Raker Club (411) (Qps) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-// PR2038E Dutch12 Cashanova (not a standard string)
-GAME( 200?, sc4cashn ,0, sc4, sc4, sc4, ROT0, "Mazooma / Eurocoin","Cashanova (Dutch) (Mazooma / Eurocoin) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
-
// PR2022 GERMAN CASHANOVA (not a standard string)
GAME( 200?, sc4cashg ,0, sc4, sc4, sc4, ROT0, "Mazooma / Nova","Cashanova (German) (Mazooma / Nova) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
@@ -23076,19 +22973,6 @@ GAME( 200?, sc4cashmd ,sc4cashm, sc4, sc4, sc4, ROT0, "Mazooma","Cashanova (Mazo
GAME( 200?, sc4cashme ,sc4cashm, sc4, sc4, sc4, ROT0, "Mazooma","Cashanova (Mazooma) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-// PR1426 CASINO CRAZY FRUITS GOLD PR1426 CRAZY F GOLD SOUNDS11 CRAZY FRUIT GOLD S.SITE (set was marked as Casino Crazy Keys)
-GAME( 200?, sc4cckey ,0, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cckeya ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cckeyb ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cckeyc ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cckeyd ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cckeye ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cckeyf ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cckeyg ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 8)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cckeyh ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 9)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cckeyi ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 10)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cckeyj ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 11)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cckeyk ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 12)", GAME_IS_SKELETON_MECHANICAL )
// PR2360 CASINO KING X BARKX SOUNDS 8 KING X
GAME( 200?, sc4ckx ,0, sc4, sc4, sc4, ROT0, "Mazooma","Casino King X (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -23101,15 +22985,6 @@ GAME( 200?, sc4ckxe ,sc4ckx, sc4, sc4, sc4, ROT0, "Mazooma","Casino King X (Maz
GAME( 200?, sc4ckxf ,sc4ckx, sc4, sc4, sc4, ROT0, "Mazooma","Casino King X (Mazooma) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4ckxg ,sc4ckx, sc4, sc4, sc4, ROT0, "Mazooma","Casino King X (Mazooma) (Scorpion 4) (set 8)", GAME_IS_SKELETON_MECHANICAL )
-// PR2062 CASINO ROYALE CROY SOUNDS CASINO ROYALE
-GAME( 200?, sc4casry ,0, sc4, sc4, sc4, ROT0, "Mazooma","Casino Royale (PR2062) (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4casryc ,sc4casry, sc4, sc4, sc4, ROT0, "Mazooma","Casino Royale (PR2062) (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-// PR2075 CASINO ROYALE DUCRV46 CROY CROY SOUNDS CASINO ROYALE (Jumping Bean copyright?)
-GAME( 200?, sc4casryd ,sc4casry, sc4, sc4, sc4, ROT0, "Mazooma","Casino Royale (PR2075) (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4casrye ,sc4casry, sc4, sc4, sc4, ROT0, "Mazooma","Casino Royale (PR2075) (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-// PR2073, CZECH CASINO ROYALE.......................CROY SOUNDS... (not standard header)
-GAME( 200?, sc4casrya ,sc4casry, sc4, sc4, sc4, ROT0, "Mazooma","Casino Royale (PR2073) (Czech) (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4casryb ,sc4casry, sc4, sc4, sc4, ROT0, "Mazooma","Casino Royale (PR2073) (Czech) (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
// PR7060CASINO CHICKEN DALES TTTWO SOUNDS CHICKEN DALES
GAME( 200?, sc4chick ,0, sc4, sc4, sc4, ROT0, "Mazooma","Chickendales (Mazooma) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
@@ -23166,32 +23041,13 @@ GAME( 200?, sc4cclash ,sc4cclas, sc4, sc4, sc4, ROT0, "BFM","Club Class (65% Fer
GAME( 200?, sc4cclasp ,sc4cclas, sc4, sc4, sc4, ROT0, "BFM","Club Class (65% Ferry) (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-// PR2383 CLUBCLOUSEAU CLUBCLOUSEAU CLUB CCLOU SOUNDS CLUB CLOSEAU
-GAME( 200?, sc4clclo ,0, sc4, sc4, sc4, ROT0, "Mazooma","Club Clouseau (Mazooma) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
-// PR2237 CLUB CLUEDO CLUB CLUEDO CLUB CCLU SOUNDS CLUB CLUEDO
-GAME( 200?, sc4clucl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Cluedo Club (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4clucla ,sc4clucl, sc4, sc4, sc4, ROT0, "Mazooma","Cluedo Club (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
// PR1208 COLOSSUS 95004235 COLOSSUS PR7155 COLOSSUS
GAME( 200?, sc4colos ,0, sc4, sc4, sc4, ROT0, "BFM","Colossus (Bellfruit) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
-// PR1621 CLUB COOL JEWELS PR1621 COOL SOUNDS11 CLUB COOL JEWELS CLUB
-GAME( 200?, sc4cjcl ,0, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cjcla ,sc4cjcl, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cjclb ,sc4cjcl, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cjclc ,sc4cjcl, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cjcld ,sc4cjcl, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cjcle ,sc4cjcl, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cjclf ,sc4cjcl, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
-// PR1036 CLUB COP THE LOT PR1036 CLOT SOUNDS11 COP THE LOT
-GAME( 200?, sc4ctlcl ,0, sc4, sc4, sc4, ROT0, "BFM","Cop The Lot Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4ctlcla ,sc4ctlcl, sc4, sc4, sc4, ROT0, "BFM","Cop The Lot Club (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-// PR1036 CLUB COP THE LOT COP THE LOT CLUB PR1036 CLOT SOUNDS11 COP THE LOT
-GAME( 200?, sc4ctlclb ,sc4ctlcl, sc4, sc4, sc4, ROT0, "BFM","Cop The Lot Club (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4ctlclc ,sc4ctlcl, sc4, sc4, sc4, ROT0, "BFM","Cop The Lot Club (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
// PR6837 CLASSIC CLUB COPS AND ROBBERS PR6837 COPS SOUNDS11 COPS AND ROBBERS
GAME( 200?, sc4crcc ,0, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Classic (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -23200,61 +23056,8 @@ GAME( 200?, sc4crcca ,sc4crcc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club
GAME( 200?, sc4crccb ,sc4crcc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Classic (65%) (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4crccc ,sc4crcc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Classic (65%) (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-// PR3241 CLUB COPS AND ROBBERS PLATINUM SCORP4 COPS & ROBRS PLT CLUB PR3241 C N R PLATINUM SOUNDS11 COPS AND ROBBERS
-GAME( 200?, sc4crcp ,0, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crcpa ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crcpc ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crcpd ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crcpe ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crcpf ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crcpg ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crcph ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 8)", GAME_IS_SKELETON_MECHANICAL )
-
-// PR1348 CLUB COPS AND ROBBERS GOLD PR1348 CCRG SOUNDS11 COPS AND ROBBERS
-GAME( 200?, sc4crgc ,0, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgca ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcb ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcc ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcd ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgce ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcf ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcg ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 8)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgch ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 9)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgci ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 10)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcj ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 11)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgck ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 12)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcl ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 13)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcm ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 14)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgco ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 15)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcq ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 16)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgct ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 17)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcw ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 18)", GAME_IS_SKELETON_MECHANICAL )
-// PR1348 CLUB COPS AND ROBBERS GOLD COPS & ROBRS GLD CLUB PR1348 CCRG SOUNDS11 COPS AND ROBBERS
-GAME( 200?, sc4crgcn ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 19)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcp ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 20)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcr ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 21)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcu ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 22)", GAME_IS_SKELETON_MECHANICAL )
-// PR1348 !500 CLUB COPS AND ROBBERS GOLD COPS & ROBRS GLD CLUB PR1348 CCRG SOUNDS11 COPS AND ROBBERS
-GAME( 200?, sc4crgcs ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 23)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4crgcv ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 24)", GAME_IS_SKELETON_MECHANICAL )
-
-// PR2383 CLUBCORONATIONSTREET CLUBCORONATIONST CLUB CCORO SOUNDS CLUB CORO ST
-GAME( 200?, sc4corcl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Coronation Street Club (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4corcla ,sc4corcl, sc4, sc4, sc4, ROT0, "Mazooma","Coronation Street Club (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-
-// PR2058 COUNT YER CASH PR2058 COUNT YER CASH SOUNDS11
-GAME( 200?, sc4cyc ,0, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cyca ,sc4cyc, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cycb ,sc4cyc, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cycc ,sc4cyc, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cycd ,sc4cyc, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-// PR2092 CLUB COUNT YER CASH COUNT YER CASH CLUB CLCC SOUNDS
-GAME( 200?, sc4cyccl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash Club (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cyccla ,sc4cyccl, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash Club (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cycclb ,sc4cyccl, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash Club (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cycclc ,sc4cyccl, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash Club (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
// PR6906 CRAZY CASINO SP98 PR6906 CRCS SOUNDS11
GAME( 200?, sc4crzcs ,0, sc4, sc4, sc4, ROT0, "BFM","Crazy Casino SP98 (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -23302,30 +23105,13 @@ GAME( 200?, sc4cfqpsj ,sc4cfqps, sc4, sc4, sc4, ROT0, "Qps","Crazy Fruits SP98 (
// PR6923 CASINO CRAZY FRUITS PR6923 CRAZY FRUITS SOUNDS11
GAME( 200?, sc4cfcas ,0, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Casino (Bellfruit) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
-// PR1396 CLASSIC CRAZY FRUITS PR1396 CLSIC CRAZY FRUITS SND11
-GAME( 200?, sc4cfcla ,0, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Classic (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cfclab ,sc4cfcla, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Classic (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cfclac ,sc4cfcla, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Classic (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cfclad ,sc4cfcla, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Classic (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cfclae ,sc4cfcla, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Classic (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cfclaf ,sc4cfcla, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Classic (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
// PR6931 CLUB CRAZY FRUITS PR6931 CRZY SOUNDS11
GAME( 200?, sc4cfclb ,0, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4cfclba ,sc4cfclb, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Club (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4cfclbb ,sc4cfclb, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Club (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-// PR1107 CRAZY FRUITS DOWNUNDER PR1107 DOWN UNDER SOUNDS11
-GAME( 200?, sc4cfdu ,0, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Down Under (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cfdua ,sc4cfdu, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Down Under (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cfdub ,sc4cfdu, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Down Under (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cfduc ,sc4cfdu, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Down Under (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-// PR1620 CLUB CRAZY FRUITS GOLD PR1620 CRAZY SOUNDS11 CRAZY FRUITS CLUB
-GAME( 200?, sc4cfgcl ,0, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Gold Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cfgcla ,sc4cfgcl, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Gold Club (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cfgclb ,sc4cfgcl, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Gold Club (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4cfgclc ,sc4cfgcl, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Gold Club (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
// PR7141 CRAZY GANG PR7141 CRAZY GANG SOUNDS11 CRAZY GANG
GAME( 200?, sc4crzgn ,0, sc4, sc4, sc4, ROT0, "BFM","Crazy Gang (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -23410,8 +23196,6 @@ GAME( 200?, sc4cccshe ,sc4cccsh, sc4, sc4, sc4, ROT0, "Mazooma","Criss Cross Cas
-// PR1221 CRISSCROSSCRAZY ART13 95004282 CRISSCROSS PR1161
-GAME( 200?, sc4ccc ,0, sc4, sc4, sc4, ROT0, "BFM","Criss Cross Crazy (Bellfruit) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
@@ -23439,14 +23223,8 @@ GAME( 200?, sc4deepia ,sc4deepi, sc4, sc4, sc4, ROT0, "Mazooma","Deep Impact (Ma
GAME( 200?, sc4deepib ,sc4deepi, sc4, sc4, sc4, ROT0, "Mazooma","Deep Impact (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4deepid ,sc4deepi, sc4, sc4, sc4, ROT0, "Mazooma","Deep Impact (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-// PR1006 DEMOLITION DERBY PR1006 DEMDERBY SOUNDS11
-GAME( 200?, sc4derby ,0, sc4, sc4, sc4, ROT0, "BFM","Demolition Derby (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4derbya ,sc4derby, sc4, sc4, sc4, ROT0, "BFM","Demolition Derby (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4derbyb ,sc4derby, sc4, sc4, sc4, ROT0, "BFM","Demolition Derby (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4derbyc ,sc4derby, sc4, sc4, sc4, ROT0, "BFM","Demolition Derby (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4derbyd ,sc4derby, sc4, sc4, sc4, ROT0, "BFM","Demolition Derby (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4derbye ,sc4derby, sc4, sc4, sc4, ROT0, "BFM","Demolition Derby (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+// gives an 'init comms' countdown
// PR1439 DIAMONDS & RUBIES PR1436 TRIPLE CASINO SOUNDS11
GAME( 200?, sc4druby ,0, sc4, sc4, sc4, ROT0, "BFM","Diamonds & Rubys (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4drubya ,sc4druby, sc4, sc4, sc4, ROT0, "BFM","Diamonds & Rubys (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
@@ -23461,8 +23239,6 @@ GAME( 200?, sc4discob ,sc4disco, sc4, sc4, sc4, ROT0, "Mazooma","Disco Inferno (
GAME( 200?, sc4discoc ,sc4disco, sc4, sc4, sc4, ROT0, "Mazooma","Disco Inferno (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4discod ,sc4disco, sc4, sc4, sc4, ROT0, "Mazooma","Disco Inferno (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-// PR2558 DOUBLE DIAMOND 011 DOUBLEDIAMONDSND DOUBLE DIAMOND
-GAME( 200?, sc4dbldm ,0, sc4, sc4, sc4, ROT0, "Qps","Double Diamond (Qps) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
// PR7060 DOUBLE FRENZY DFRZYSND
GAME( 200?, sc4dblfr ,0, sc4, sc4, sc4, ROT0, "Qps","Double Frenzy (PR7060) (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -23484,18 +23260,7 @@ GAME( 200?, sc4darwc ,sc4darw, sc4, sc4, sc4, ROT0, "Qps","Dough & Arrow (Qps) (
GAME( 200?, sc4duckq ,0, sc4, sc4, sc4, ROT0, "Qps","Ducks Of Hazzard (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4duckqa ,sc4duckq, sc4, sc4, sc4, ROT0, "Qps","Ducks Of Hazzard (Qps) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-// PR1104 DYNAMITE PR1104 DYNAMITE SOUNDS11
-GAME( 200?, sc4dyna ,0, sc4, sc4, sc4, ROT0, "BFM","Dynamite (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4dynaa ,sc4dyna, sc4, sc4, sc4, ROT0, "BFM","Dynamite (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-// PR1017 EASY STREAK PR1017 EASY STREAK SOUNDS11 EASY STREAK
-GAME( 200?, sc4easy ,0, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4easya ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4easyb ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4easyc ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4easyd ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4easye ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4easyf ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 11)", GAME_IS_SKELETON_MECHANICAL )
// PR1326 CASINO EASY STREAK PR1326 EASY STREAK SOUNDS11
GAME( 200?, sc4eascs ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak Casino (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4eascsa ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak Casino (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
@@ -23905,13 +23670,6 @@ GAME( 200?, sc4holywa ,sc4holyw, sc4, sc4, sc4, ROT0, "BFM","Hollywood (Bellfrui
GAME( 200?, sc4holywb ,sc4holyw, sc4, sc4, sc4, ROT0, "BFM","Hollywood (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, sc4holywc ,sc4holyw, sc4, sc4, sc4, ROT0, "BFM","Hollywood (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-// PR6911 HOT PROPERTY PR6911 HOT PROPERTY SOUNDS11 HOT PROPERTY
-GAME( 200?, sc4hotpr ,0, sc4, sc4, sc4, ROT0, "BFM","Hot Property (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4hotpra ,sc4hotpr, sc4, sc4, sc4, ROT0, "BFM","Hot Property (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4hotprb ,sc4hotpr, sc4, sc4, sc4, ROT0, "BFM","Hot Property (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4hotprc ,sc4hotpr, sc4, sc4, sc4, ROT0, "BFM","Hot Property (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4hotprd ,sc4hotpr, sc4, sc4, sc4, ROT0, "BFM","Hot Property (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
-GAME( 200?, sc4hotpre ,sc4hotpr, sc4, sc4, sc4, ROT0, "BFM","Hot Property (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
// PR1759 CLUB HOT SIX HOT SIX CLUB PR1759 HOSX SOUNDS11
GAME( 200?, sc4h6cl ,0, sc4, sc4, sc4, ROT0, "BFM","Hot Six Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
@@ -26890,6 +26648,302 @@ GAME( 200?, sc4gggq ,sc4ggg, sc4, sc4, sc4, ROT0, "Mazooma","Grand Golden Game
GAME( 200?, sc4gggr ,sc4ggg, sc4, sc4, sc4, ROT0, "Mazooma","Grand Golden Game (Mazooma) (Scorpion 4) (set 19)", GAME_IS_SKELETON_MECHANICAL )// ^^
GAME( 200?, sc4gggs ,sc4ggg, sc4, sc4, sc4, ROT0, "Mazooma","Grand Golden Game (Mazooma) (Scorpion 4) (set 20)", GAME_IS_SKELETON_MECHANICAL )// ^^
+/**************************************************/
+/************ many give error 41 ******************/
+/**************************************************/
+
+// PR1227 4PLAY ART13 95004313 4PLAY PR1227
+GAME( 200?, sc4ivply ,0, sc4, sc4, sc4, ROT0, "BFM","4 Play (Bellfruit) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL ) // not english
+
+// PR2070 ACES HIGH ACEHI SOUNDS ACES HIGH
+GAME( 200?, sc4acesh ,0, sc4, sc4, sc4, ROT0, "Mazooma","Aces High (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4acesha ,sc4acesh, sc4, sc4, sc4, ROT0, "Mazooma","Aces High (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4aceshb ,sc4acesh, sc4, sc4, sc4, ROT0, "Mazooma","Aces High (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4aceshc ,sc4acesh, sc4, sc4, sc4, ROT0, "Mazooma","Aces High (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2118 ADRENALIN COTL SOUNDS ADRENALIN
+GAME( 200?, sc4adren ,0, sc4, sc4, sc4, ROT0, "Mazooma","Adrenalin (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4adrena ,sc4adren, sc4, sc4, sc4, ROT0, "Mazooma","Adrenalin (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4adrenb ,sc4adren, sc4, sc4, sc4, ROT0, "Mazooma","Adrenalin (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4adrenc ,sc4adren, sc4, sc4, sc4, ROT0, "Mazooma","Adrenalin (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2154 CLUB AROUND BOAR CLB AROUND BOARD CLUB AROU SOUNDS
+GAME( 200?, sc4a40cl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Around The Board In 40 Days Club (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4a40cla ,sc4a40cl, sc4, sc4, sc4, ROT0, "Mazooma","Around The Board In 40 Days Club (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4a40clb ,sc4a40cl, sc4, sc4, sc4, ROT0, "Mazooma","Around The Board In 40 Days Club (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4a40clc ,sc4a40cl, sc4, sc4, sc4, ROT0, "Mazooma","Around The Board In 40 Days Club (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+
+ // PR1225 AZTEC CASINO
+GAME( 200?, sc4aztec ,0, sc4, sc4, sc4, ROT0, "BFM","Aztec (Casino) (Bellfruit) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
+ // PR1215 AZTEC EURO
+GAME( 200?, sc4azteca ,sc4aztec, sc4, sc4, sc4, ROT0, "BFM","Aztec (Euro) (Bellfruit) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL ) // not english
+
+// PR???? BANKETYBANK V1.0 BANKETYBANKSND BANKETY BANK
+GAME( 200?, sc4bankb ,0, sc4, sc4, sc4, ROT0, "Qps","Bankety Bank (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bankba ,sc4bankb, sc4, sc4, sc4, ROT0, "Qps","Bankety Bank (Qps) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2094 BEDAZZLED BEDZ SOUNDS BEDAZZLED
+GAME( 200?, sc4bed ,0, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4beda ,sc4bed, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bedb ,sc4bed, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bedc ,sc4bed, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bedd ,sc4bed, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bede ,sc4bed, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled (Mazooma) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2102 CLUB BEDAZZLED CBED SOUNDS CLUB BEDAZZLED
+GAME( 200?, sc4bedcl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled Club (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+// PR2102 CLUB BEDAZZLED CLUB BEDAZZLED CLUB CBED SOUNDS CLUB BEDAZZLED
+GAME( 200?, sc4bedcla ,sc4bedcl, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled Club (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bedclb ,sc4bedcl, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled Club (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bedclc ,sc4bedcl, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled Club (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bedcld ,sc4bedcl, sc4, sc4, sc4, ROT0, "Mazooma","Bedazzled Club (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2083 BIG BLASTER BBST SOUNDS BIG BLASTER
+GAME( 200?, sc4bblas ,0, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bblasa ,sc4bblas, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bblasb ,sc4bblas, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bblasc ,sc4bblas, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bblasd ,sc4bblas, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bblase ,sc4bblas, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bblasf ,sc4bblas, sc4, sc4, sc4, ROT0, "Mazooma","Big Blaster (Mazooma) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
+
+
+// PR21xx BINGO BELLE SSPT SOUNDS BINGO BELLE
+GAME( 200?, sc4bingb ,0, sc4, sc4, sc4, ROT0, "Mazooma","Bingo Belle (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bingba ,sc4bingb, sc4, sc4, sc4, ROT0, "Mazooma","Bingo Belle (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
+
+// PR???? BANKETYBANK 011 BANKETYBANKSND BANKETY BANK
+GAME( 200?, sc4bb ,0, sc4, sc4, sc4, ROT0, "Qps","Blankety Bank (Qps) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bba ,sc4bb, sc4, sc4, sc4, ROT0, "Qps","Blankety Bank (Qps) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2298 CLUB BOBBY DAZZLER CLUB BOB DAZZLER CLUB CLUBBOBD SOUNDS
+GAME( 200?, sc4bobcl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Bobby Dazzler Club (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bobcla ,sc4bobcl, sc4, sc4, sc4, ROT0, "Mazooma","Bobby Dazzler Club (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2033 BREAK THE SPELL SPELL SOUNDS BREAK THE SPELL
+GAME( 200?, sc4brksp ,0, sc4, sc4, sc4, ROT0, "Mazooma","Break The Spell (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4brkspa ,sc4brksp, sc4, sc4, sc4, ROT0, "Mazooma","Break The Spell (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR1753 CLUB BULLSEYE BULLSEYE CLUB PR1751 BULLSEYE SOUNDS11 BULLSYE
+GAME( 200?, sc4bulcl ,0, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bulcla ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bulclb ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bulclc ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bulcld ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bulcle ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bulclf ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bulclg ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 8)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bulclh ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 9)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4bulcli ,sc4bulcl, sc4, sc4, sc4, ROT0, "BFM","Bullseye Club (Bellfruit) (Scorpion 4) (set 10)", GAME_IS_SKELETON_MECHANICAL )
+
+
+// PR1113 CARRY ON WINNING PR1113 CARRY ON WINNING SOUNDS11
+GAME( 200?, sc4carry ,0, sc4, sc4, sc4, ROT0, "BFM","Carry On Winning (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4carrya ,sc4carry, sc4, sc4, sc4, ROT0, "BFM","Carry On Winning (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
+
+// PR1349 CLUB CASH BAZAAR PR1349 CLUB CASH BAZAAR SOUNDS11
+GAME( 200?, sc4cbaz ,0, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cbaza ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cbazb ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cbazc ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cbazd ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cbaze ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cbazf ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cbazg ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 8)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cbazh ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 9)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cbazi ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 10)", GAME_IS_SKELETON_MECHANICAL )
+// PR1349 CLUB CASH BAZAAR CLUB CASH BAZAAR CLUB PR1349 CLUB CASH BAZAAR SOUNDS11
+GAME( 200?, sc4cbazj ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 11)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cbazk ,sc4cbaz, sc4, sc4, sc4, ROT0, "BFM","Cash Bazaar Club (Bellfruit) (Scorpion 4) (set 12)", GAME_IS_SKELETON_MECHANICAL )
+
+
+// PR2020 CASH ERUPTION ERUP SOUNDS CASH ERUPTION
+GAME( 200?, sc4cerup ,0, sc4, sc4, sc4, ROT0, "Mazooma","Cash Eruption (Mazooma) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
+
+
+// PR2076 CASH EXPLOSION CEXP SOUNDS CASH EXPLSION
+GAME( 200?, sc4cexpl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2076) (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cexpla ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2076) (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cexplb ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2076) (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cexplc ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2076) (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cexplf ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2076) (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cexplg ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2076) (Mazooma) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+// PR2120 CASH EXPLOSION CEXP SOUNDS CASH EXPLSION
+GAME( 200?, sc4cexpld ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2120) (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cexple ,sc4cexpl, sc4, sc4, sc4, ROT0, "Mazooma","Cash Explosion (PR2120) (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
+
+// PR2118 CASH ON THE LASH COTL SOUNDS CASH ON THE LASH
+GAME( 200?, sc4clash ,0, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4clasha ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4clashb ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4clashc ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4clashd ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4clashe ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4clashf ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4clashg ,sc4clash, sc4, sc4, sc4, ROT0, "Mazooma","Cash On The Lash (Mazooma) (Scorpion 4) (set 8)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2038E Dutch12 Cashanova (not a standard string)
+GAME( 200?, sc4cashn ,0, sc4, sc4, sc4, ROT0, "Mazooma / Eurocoin","Cashanova (Dutch) (Mazooma / Eurocoin) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
+
+
+// PR1426 CASINO CRAZY FRUITS GOLD PR1426 CRAZY F GOLD SOUNDS11 CRAZY FRUIT GOLD S.SITE (set was marked as Casino Crazy Keys)
+GAME( 200?, sc4cckey ,0, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cckeya ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cckeyb ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cckeyc ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cckeyd ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cckeye ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cckeyf ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cckeyg ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 8)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cckeyh ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 9)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cckeyi ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 10)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cckeyj ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 11)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cckeyk ,sc4cckey, sc4, sc4, sc4, ROT0, "BFM","Casino Crazy Fruits Gold (Bellfruit) (Scorpion 4) (set 12)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2062 CASINO ROYALE CROY SOUNDS CASINO ROYALE
+GAME( 200?, sc4casry ,0, sc4, sc4, sc4, ROT0, "Mazooma","Casino Royale (PR2062) (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4casryc ,sc4casry, sc4, sc4, sc4, ROT0, "Mazooma","Casino Royale (PR2062) (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+// PR2075 CASINO ROYALE DUCRV46 CROY CROY SOUNDS CASINO ROYALE (Jumping Bean copyright?)
+GAME( 200?, sc4casryd ,sc4casry, sc4, sc4, sc4, ROT0, "Mazooma","Casino Royale (PR2075) (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4casrye ,sc4casry, sc4, sc4, sc4, ROT0, "Mazooma","Casino Royale (PR2075) (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+// PR2073, CZECH CASINO ROYALE.......................CROY SOUNDS... (not standard header)
+GAME( 200?, sc4casrya ,sc4casry, sc4, sc4, sc4, ROT0, "Mazooma","Casino Royale (PR2073) (Czech) (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4casryb ,sc4casry, sc4, sc4, sc4, ROT0, "Mazooma","Casino Royale (PR2073) (Czech) (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2383 CLUBCLOUSEAU CLUBCLOUSEAU CLUB CCLOU SOUNDS CLUB CLOSEAU
+GAME( 200?, sc4clclo ,0, sc4, sc4, sc4, ROT0, "Mazooma","Club Clouseau (Mazooma) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
+
+
+// PR2237 CLUB CLUEDO CLUB CLUEDO CLUB CCLU SOUNDS CLUB CLUEDO
+GAME( 200?, sc4clucl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Cluedo Club (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4clucla ,sc4clucl, sc4, sc4, sc4, ROT0, "Mazooma","Cluedo Club (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
+
+// PR1621 CLUB COOL JEWELS PR1621 COOL SOUNDS11 CLUB COOL JEWELS CLUB
+GAME( 200?, sc4cjcl ,0, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cjcla ,sc4cjcl, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cjclb ,sc4cjcl, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cjclc ,sc4cjcl, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cjcld ,sc4cjcl, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cjcle ,sc4cjcl, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cjclf ,sc4cjcl, sc4, sc4, sc4, ROT0, "BFM","Cool Jewels Club (Bellfruit) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR1036 CLUB COP THE LOT PR1036 CLOT SOUNDS11 COP THE LOT
+GAME( 200?, sc4ctlcl ,0, sc4, sc4, sc4, ROT0, "BFM","Cop The Lot Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4ctlcla ,sc4ctlcl, sc4, sc4, sc4, ROT0, "BFM","Cop The Lot Club (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+// PR1036 CLUB COP THE LOT COP THE LOT CLUB PR1036 CLOT SOUNDS11 COP THE LOT
+GAME( 200?, sc4ctlclb ,sc4ctlcl, sc4, sc4, sc4, ROT0, "BFM","Cop The Lot Club (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4ctlclc ,sc4ctlcl, sc4, sc4, sc4, ROT0, "BFM","Cop The Lot Club (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+
+
+
+// PR3241 CLUB COPS AND ROBBERS PLATINUM SCORP4 COPS & ROBRS PLT CLUB PR3241 C N R PLATINUM SOUNDS11 COPS AND ROBBERS
+GAME( 200?, sc4crcp ,0, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crcpa ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crcpc ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crcpd ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crcpe ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crcpf ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crcpg ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crcph ,sc4crcp, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Club Platinum (Bellfruit) (Scorpion 4) (set 8)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR1348 CLUB COPS AND ROBBERS GOLD PR1348 CCRG SOUNDS11 COPS AND ROBBERS
+GAME( 200?, sc4crgc ,0, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgca ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcb ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcc ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcd ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgce ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcf ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 7)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcg ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 8)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgch ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 9)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgci ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 10)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcj ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 11)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgck ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 12)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcl ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 13)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcm ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 14)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgco ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 15)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcq ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 16)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgct ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 17)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcw ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 18)", GAME_IS_SKELETON_MECHANICAL )
+// PR1348 CLUB COPS AND ROBBERS GOLD COPS & ROBRS GLD CLUB PR1348 CCRG SOUNDS11 COPS AND ROBBERS
+GAME( 200?, sc4crgcn ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 19)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcp ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 20)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcr ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 21)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcu ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 22)", GAME_IS_SKELETON_MECHANICAL )
+// PR1348 !500 CLUB COPS AND ROBBERS GOLD COPS & ROBRS GLD CLUB PR1348 CCRG SOUNDS11 COPS AND ROBBERS
+GAME( 200?, sc4crgcs ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 23)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4crgcv ,sc4crgc, sc4, sc4, sc4, ROT0, "BFM","Cops 'n' Robbers Gold Club (Bellfruit) (Scorpion 4) (set 24)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2383 CLUBCORONATIONSTREET CLUBCORONATIONST CLUB CCORO SOUNDS CLUB CORO ST
+GAME( 200?, sc4corcl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Coronation Street Club (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4corcla ,sc4corcl, sc4, sc4, sc4, ROT0, "Mazooma","Coronation Street Club (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2058 COUNT YER CASH PR2058 COUNT YER CASH SOUNDS11
+GAME( 200?, sc4cyc ,0, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cyca ,sc4cyc, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cycb ,sc4cyc, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cycc ,sc4cyc, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cycd ,sc4cyc, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash (Mazooma) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2092 CLUB COUNT YER CASH COUNT YER CASH CLUB CLCC SOUNDS
+GAME( 200?, sc4cyccl ,0, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash Club (Mazooma) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cyccla ,sc4cyccl, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash Club (Mazooma) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cycclb ,sc4cyccl, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash Club (Mazooma) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cycclc ,sc4cyccl, sc4, sc4, sc4, ROT0, "Mazooma","Count Yer Cash Club (Mazooma) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR1396 CLASSIC CRAZY FRUITS PR1396 CLSIC CRAZY FRUITS SND11
+GAME( 200?, sc4cfcla ,0, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Classic (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cfclab ,sc4cfcla, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Classic (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cfclac ,sc4cfcla, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Classic (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cfclad ,sc4cfcla, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Classic (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cfclae ,sc4cfcla, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Classic (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cfclaf ,sc4cfcla, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Classic (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+
+
+// PR1107 CRAZY FRUITS DOWNUNDER PR1107 DOWN UNDER SOUNDS11
+GAME( 200?, sc4cfdu ,0, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Down Under (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cfdua ,sc4cfdu, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Down Under (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cfdub ,sc4cfdu, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Down Under (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cfduc ,sc4cfdu, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Down Under (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR1620 CLUB CRAZY FRUITS GOLD PR1620 CRAZY SOUNDS11 CRAZY FRUITS CLUB
+GAME( 200?, sc4cfgcl ,0, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Gold Club (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cfgcla ,sc4cfgcl, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Gold Club (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cfgclb ,sc4cfgcl, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Gold Club (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4cfgclc ,sc4cfgcl, sc4, sc4, sc4, ROT0, "BFM","Crazy Fruits Gold Club (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR1221 CRISSCROSSCRAZY ART13 95004282 CRISSCROSS PR1161
+GAME( 200?, sc4ccc ,0, sc4, sc4, sc4, ROT0, "BFM","Criss Cross Crazy (Bellfruit) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL ) // not english
+
+// PR1006 DEMOLITION DERBY PR1006 DEMDERBY SOUNDS11
+GAME( 200?, sc4derby ,0, sc4, sc4, sc4, ROT0, "BFM","Demolition Derby (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4derbya ,sc4derby, sc4, sc4, sc4, ROT0, "BFM","Demolition Derby (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4derbyb ,sc4derby, sc4, sc4, sc4, ROT0, "BFM","Demolition Derby (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4derbyc ,sc4derby, sc4, sc4, sc4, ROT0, "BFM","Demolition Derby (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4derbyd ,sc4derby, sc4, sc4, sc4, ROT0, "BFM","Demolition Derby (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4derbye ,sc4derby, sc4, sc4, sc4, ROT0, "BFM","Demolition Derby (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR2558 DOUBLE DIAMOND 011 DOUBLEDIAMONDSND DOUBLE DIAMOND
+GAME( 200?, sc4dbldm ,0, sc4, sc4, sc4, ROT0, "Qps","Double Diamond (Qps) (Scorpion 4)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR1104 DYNAMITE PR1104 DYNAMITE SOUNDS11
+GAME( 200?, sc4dyna ,0, sc4, sc4, sc4, ROT0, "BFM","Dynamite (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4dynaa ,sc4dyna, sc4, sc4, sc4, ROT0, "BFM","Dynamite (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
+// PR1017 EASY STREAK PR1017 EASY STREAK SOUNDS11 EASY STREAK
+GAME( 200?, sc4easy ,0, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4easya ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4easyb ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 3)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4easyc ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 4)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4easyd ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 5)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4easye ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 6)", GAME_IS_SKELETON_MECHANICAL )
+GAME( 200?, sc4easyf ,sc4easy, sc4, sc4, sc4, ROT0, "BFM","Easy Streak (Bellfruit) (Scorpion 4) (set 11)", GAME_IS_SKELETON_MECHANICAL )
+
+
/* Scorpion 4 + Adder 4 */
@@ -26898,3 +26952,6 @@ GAME( 200?, ad4film ,0, sc4_adder4, sc4, sc4, ROT0, "BFM","Film Premiere (Vid
GAME( 200?, ad4filma ,ad4film, sc4_adder4, sc4, sc4, ROT0, "BFM","Film Premiere (Video?) (Bellfruit) (Adder 4) (set 2)", GAME_IS_SKELETON_MECHANICAL ) // ^^
GAME( 200?, ad4ctl ,0, sc4_adder4, sc4, sc4, ROT0, "BFM","Cop The Lot Club (Video) (Bellfruit) (Adder 4) (set 1)", GAME_IS_SKELETON_MECHANICAL )
GAME( 200?, ad4ctla ,ad4ctl, sc4_adder4, sc4, sc4, ROT0, "BFM","Cop The Lot Club (Video) (Bellfruit) (Adder 4) (set 2)", GAME_IS_SKELETON_MECHANICAL )
+
+
+
diff --git a/src/mame/drivers/bfm_sc4h.c b/src/mame/drivers/bfm_sc4h.c
index d21990b9951..256746f635e 100644
--- a/src/mame/drivers/bfm_sc4h.c
+++ b/src/mame/drivers/bfm_sc4h.c
@@ -48,6 +48,7 @@ public:
UINT16* m_mainram;
// devices
device_t* m_duart;
+ device_t* m_ymz;
required_device<cpu_device> m_maincpu;
// serial vfd
@@ -75,7 +76,7 @@ static READ16_HANDLER( sc4_mem_r )
sc4_state *state = space->machine().driver_data<sc4_state>();
int pc = cpu_get_pc(&space->device());
int cs = m68307_get_cs(state->m_maincpu, offset * 2);
- int base = 0, end = 0;
+ int base = 0, end = 0, base2 = 0, end2 = 0;
// if (!(space->debugger_access())) printf("cs is %d\n", cs);
switch ( cs )
@@ -89,13 +90,60 @@ static READ16_HANDLER( sc4_mem_r )
case 2:
base = 0x800000/2;
- end = base + 0x100000 / 2;
+ end = base + 0x10000 / 2;
+
+ base2 = 0x810000/2;
+ end2 = base2 + 0x10000 / 2;
+
if ((offset>=base) && (offset<end))
{
offset-=base;
return(state->m_mainram[offset]);
}
+ else if ((offset>=base2) && (offset<end2))
+ {
+ offset-=base2;
+
+ switch (offset << 1)
+ {
+ case 0x0030:
+ return 0x0000;
+
+ case 0x0050:
+ return 0x0000;
+
+ case 0x0060:
+ return 0x0000;
+
+ case 0x0240:
+ return 0xffff;
+
+ case 0x02e0:
+ return 0x0000;
+
+ case 0x1000:
+ return 0x0000;
+
+ case 0x1010:
+ return 0x0000;
+
+ case 0x1020:
+ return 0x0000;
+
+ case 0x1040:
+ return 0x0000;
+
+ case 0x1244:
+ return ymz280b_r(state->m_ymz,0);
+
+ case 0x1246:
+ return ymz280b_r(state->m_ymz,1);
+
+ default:
+ logerror("%08x maincpu read access offset %08x mem_mask %04x cs %d (LAMPS etc.)\n", pc, offset*2, mem_mask, cs);
+ }
+ }
else
{
logerror("%08x maincpu read access offset %08x mem_mask %04x cs %d\n", pc, offset*2, mem_mask, cs);
@@ -113,7 +161,7 @@ static READ16_HANDLER( sc4_mem_r )
}
else
{
- logerror("%08x maincpu read access offset %08x mem_mask %04x cs %d\n", pc, offset*2, mem_mask, cs);
+ logerror("%08x maincpu read access offset %08x mem_mask %04x cs %d\n", pc, offset*2, mem_mask, cs);
return 0x0000;
}
@@ -121,7 +169,7 @@ static READ16_HANDLER( sc4_mem_r )
case 4:
logerror("%08x maincpu read access offset %08x mem_mask %04x cs %d\n", pc, offset*2, mem_mask, cs);
- return 0xffff;
+ return 0x0000;//0xffff;
break;
default:
@@ -137,7 +185,7 @@ static WRITE16_HANDLER( sc4_mem_w )
sc4_state *state = space->machine().driver_data<sc4_state>();
int pc = cpu_get_pc(&space->device());
int cs = m68307_get_cs(state->m_maincpu, offset * 2);
- int base = 0, end = 0;
+ int base = 0, end = 0, base2 = 0, end2 = 0;
switch ( cs )
{
@@ -151,13 +199,34 @@ static WRITE16_HANDLER( sc4_mem_w )
case 2:
base = 0x800000/2;
- end = base + 0x100000 / 2;
+ end = base + 0x10000 / 2;
+ base2 = 0x810000/2;
+ end2 = base2 + 0x10000 / 2;
if ((offset>=base) && (offset<end))
{
offset-=base;
COMBINE_DATA(&state->m_mainram[offset]);
}
+ else if ((offset>=base2) && (offset<end2))
+ {
+ offset-=base2;
+
+ switch (offset << 1)
+ {
+ case 0x1248:
+ ymz280b_w(state->m_ymz,0, data & 0xff);
+ break;
+
+ case 0x124a:
+ ymz280b_w(state->m_ymz,1, data & 0xff);
+ break;
+
+
+ default:
+ logerror("%08x maincpu write access offset %08x data %04x mem_mask %04x cs %d (LAMPS etc.)\n", pc, offset*2, data, mem_mask, cs);
+ }
+ }
else
{
logerror("%08x maincpu write access offset %08x data %04x mem_mask %04x cs %d\n", pc, offset*2, data, mem_mask, cs);
@@ -254,11 +323,17 @@ void bfm_sc4_write_serial_vfd(running_machine &machine, bool cs, bool clock, boo
}
}
+
+static WRITE8_HANDLER( bfm_sc4_68307_porta_w )
+{
+ int pc = cpu_get_pc(&space->device());
+ logerror("%08x bfm_sc4_68307_porta_w %04x\n", pc, data);
+}
+
static WRITE16_HANDLER( bfm_sc4_68307_portb_w )
{
int pc = cpu_get_pc(&space->device());
//m68ki_cpu_core *m68k = m68k_get_safe_token(&space->device());
-
// serial output to the VFD at least..
logerror("%08x bfm_sc4_68307_portb_w %04x %04x\n", pc, data, mem_mask);
@@ -266,9 +341,22 @@ static WRITE16_HANDLER( bfm_sc4_68307_portb_w )
// we have game specific DMD roms in a couple of cases, is it possible ALL the later games are meant to have
// their own DMD roms rather than it being something generic? (if so we're missing a lot of DMD roms..)
bfm_sc4_write_serial_vfd(space->machine(), (data & 0x4000)?1:0, (data & 0x1000)?1:0, !(data & 0x2000)?1:0);
+// bfm_sc4_write_serial_vfd(space->machine(), (data & 0x1000)?1:0, (data & 0x4000)?0:1, !(data & 0x2000)?1:0);
+}
+static READ8_HANDLER( bfm_sc4_68307_porta_r )
+{
+ int pc = cpu_get_pc(&space->device());
+ logerror("%08x bfm_sc4_68307_porta_r\n", pc);
+ return space->machine().rand();
+}
+static READ16_HANDLER( bfm_sc4_68307_portb_r )
+{
+ int pc = cpu_get_pc(&space->device());
+ logerror("%08x bfm_sc4_68307_portb_r %04x\n", pc, mem_mask);
+ return 0x0000;//0xffff;//space->machine().rand();
}
static MACHINE_START( sc4 )
@@ -277,8 +365,12 @@ static MACHINE_START( sc4 )
state->m_cpuregion = (UINT16*)machine.region( "maincpu" )->base();
state->m_mainram = (UINT16*)auto_alloc_array_clear(machine, UINT16, 0x100000);
state->m_duart = machine.device("duart68681");
-
- m68307_set_port_callbacks(machine.device("maincpu"), 0, 0, 0, bfm_sc4_68307_portb_w );
+ state->m_ymz = machine.device("ymz");
+ m68307_set_port_callbacks(machine.device("maincpu"),
+ bfm_sc4_68307_porta_r,
+ bfm_sc4_68307_porta_w,
+ bfm_sc4_68307_portb_r,
+ bfm_sc4_68307_portb_w );
BFM_BD1_init(0);
@@ -330,12 +422,41 @@ static const duart68681_config bfm_sc4_duart68681_config =
bfm_sc4_duart_output_w
};
+// generate some fake interrupts for force things to go a bit further
+// until we have the peripheral hookups working..
+static INTERRUPT_GEN( sc4_fake_int_check )
+{
+ int which_int = 0;
+ static int count = 0;
+
+ count++;
+ if (count>30000)
+ {
+ which_int = device->machine().rand() % 5;
+
+ /*
+ if ( device->machine().input().code_pressed_once(KEYCODE_Q) ) which_int = 1;
+ if ( device->machine().input().code_pressed_once(KEYCODE_W) ) which_int = 2;
+ if ( device->machine().input().code_pressed_once(KEYCODE_E) ) which_int = 3;
+ if ( device->machine().input().code_pressed_once(KEYCODE_R) ) which_int = 4;
+ if ( device->machine().input().code_pressed_once(KEYCODE_T) ) which_int = 5;
+ */
+
+ //if (which_int==1) m68307_timer0_interrupt((legacy_cpu_device*)device->machine().device("maincpu"));
+ //if (which_int==2) m68307_timer1_interrupt((legacy_cpu_device*)device->machine().device("maincpu"));
+ if (which_int==3) m68307_serial_interrupt((legacy_cpu_device*)device->machine().device("maincpu"));
+ //if (which_int==4) m68307_mbus_interrupt((legacy_cpu_device*)device->machine().device("maincpu"));
+ // if (which_int==5) m68307_licr2_interrupt((legacy_cpu_device*)device->machine().device("maincpu"));
+ }
+}
MACHINE_CONFIG_START( sc4, sc4_state )
MCFG_CPU_ADD("maincpu", M68307, 16000000) // 68307! (EC000 core)
MCFG_CPU_PROGRAM_MAP(sc4_map)
+ MCFG_CPU_PERIODIC_INT(sc4_fake_int_check,1000)
+
MCFG_MACHINE_START( sc4 )
/* sound hardware */
@@ -343,6 +464,7 @@ MACHINE_CONFIG_START( sc4, sc4_state )
MCFG_DUART68681_ADD("duart68681", 16000000/4, bfm_sc4_duart68681_config) // ?? Mhz
+
MCFG_DEFAULT_LAYOUT(layout_bfm_sc4)
MCFG_SOUND_ADD("ymz", YMZ280B, 16000000) // ?? Mhz
diff --git a/src/mame/includes/bfm_sc45.h b/src/mame/includes/bfm_sc45.h
index 11e9d7fec47..4feb0c1fe4d 100644
--- a/src/mame/includes/bfm_sc45.h
+++ b/src/mame/includes/bfm_sc45.h
@@ -44,14 +44,15 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_adren_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+// bad? reports error
#define sc_alad_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
ROM_LOAD( "95008075.bin", 0x0000, 0x080000, CRC(c9306583) SHA1(8bccb9529e7d24be7b4f3ffda0d35780a170be43) ) \
#define sc_adsnt_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008478.bin", 0x0000, 0x100000, CRC(d8aa3daf) SHA1(dafeb014f04179882921622df9b5c9917279bd02) ) \
- ROM_LOAD( "95008479.bin", 0x0000, 0x100000, CRC(f1ec9928) SHA1(cd2eb8115217c205f248564c9340353c84db2ac5) ) \
+ ROM_LOAD( "95008478.bin", 0x000000, 0x100000, CRC(d8aa3daf) SHA1(dafeb014f04179882921622df9b5c9917279bd02) ) \
+ ROM_LOAD( "95008479.bin", 0x100000, 0x100000, CRC(f1ec9928) SHA1(cd2eb8115217c205f248564c9340353c84db2ac5) ) \
#define sc_a40cl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -66,8 +67,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_bjob_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009126.bin", 0x0000, 0x100000, CRC(55940c44) SHA1(e4f2f36ccf28446011e43f5c8a72fa9d15f72df0) ) \
- ROM_LOAD( "95009127.bin", 0x0000, 0x100000, CRC(0d3ee6d9) SHA1(a40bffaf631010d53ce9228758bbf5dba8423f6e) ) \
+ ROM_LOAD( "95009126.bin", 0x000000, 0x100000, CRC(55940c44) SHA1(e4f2f36ccf28446011e43f5c8a72fa9d15f72df0) ) \
+ ROM_LOAD( "95009127.bin", 0x100000, 0x100000, CRC(0d3ee6d9) SHA1(a40bffaf631010d53ce9228758bbf5dba8423f6e) ) \
#define sc_bkngx_others \
ROM_REGION( 0x5000, "pics", 0 ) \
@@ -78,8 +79,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_bucc_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008806.bin", 0x0000, 0x100000, CRC(16ee0143) SHA1(0890da3b2108ec67db1cc8ed2dc40f2eac2a5fbc) ) \
- ROM_LOAD( "95008807.bin", 0x0000, 0x100000, CRC(7141737f) SHA1(74607352f32df2a27f0724f243532c98ca315910) ) \
+ ROM_LOAD( "95008806.bin", 0x000000, 0x100000, CRC(16ee0143) SHA1(0890da3b2108ec67db1cc8ed2dc40f2eac2a5fbc) ) \
+ ROM_LOAD( "95008807.bin", 0x100000, 0x100000, CRC(7141737f) SHA1(74607352f32df2a27f0724f243532c98ca315910) ) \
#define sc_bunny_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -87,8 +88,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_bantm_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008962.bin", 0x0000, 0x100000, CRC(3c10480f) SHA1(67c86228b6199e336beaa21b2982ce3cf5867ed1) ) \
- ROM_LOAD( "95008963.bin", 0x0000, 0x100000, CRC(8ceb0bf8) SHA1(b5712f145ff515c10b0a3b131d0c215a31adbb42) ) \
+ ROM_LOAD( "95008962.bin", 0x000000, 0x100000, CRC(3c10480f) SHA1(67c86228b6199e336beaa21b2982ce3cf5867ed1) ) \
+ ROM_LOAD( "95008963.bin", 0x100000, 0x100000, CRC(8ceb0bf8) SHA1(b5712f145ff515c10b0a3b131d0c215a31adbb42) ) \
ROM_REGION( 0x5000, "pics", 0 ) \
ROM_LOAD( "95890434.bin", 0x0000, 0x5000, CRC(37740955) SHA1(c7a9839a4f7f01c916b696a8baedf33d0c146fa3) ) \
ROM_LOAD( "95890435.bin", 0x0000, 0x5000, CRC(42e24d61) SHA1(dd915ccf979d61cdb0ff7598d35cdceb43d6d8e9) ) \
@@ -104,8 +105,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_batl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008541.bin", 0x0000, 0x100000, CRC(a739cba8) SHA1(b968cfa18c671aaf027909961a843fc01101d68a) ) \
- ROM_LOAD( "95008542.bin", 0x0000, 0x100000, CRC(686bb7cc) SHA1(4e809f2d1401030127d7afa853189c4fca9742e5) ) \
+ ROM_LOAD( "95008541.bin", 0x000000, 0x100000, CRC(a739cba8) SHA1(b968cfa18c671aaf027909961a843fc01101d68a) ) \
+ ROM_LOAD( "95008542.bin", 0x100000, 0x100000, CRC(686bb7cc) SHA1(4e809f2d1401030127d7afa853189c4fca9742e5) ) \
#define sc_bedcl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -121,6 +122,7 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_bigdl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "bigdealsnd", 0x0000, 0x100000, NO_DUMP ) \
#define sc_bingb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -130,6 +132,7 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_blue_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "brinse sounds", 0x0000, 0x100000, NO_DUMP ) \
#define sc_bob_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -145,6 +148,7 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_bonbx_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "barx sounds", 0x0000, 0x100000, NO_DUMP ) \
#define sc_brksp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -152,14 +156,19 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_brix_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "brix sounds", 0x0000, 0x100000, NO_DUMP ) \
#define sc_bugs_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "pr7109 bugs money sounds11", 0x0000, 0x100000, NO_DUMP ) \
+
+
+
#define sc_bpfpb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008771.bin", 0x0000, 0x100000, CRC(121b6db2) SHA1(634f435635fcb08013729629fc8f56a4180c2034) ) \
- ROM_LOAD( "95008772.bin", 0x0000, 0x100000, CRC(c8813870) SHA1(5c4571a3ca9a06c49e80c5e10e9fd288de560324) ) \
+ ROM_LOAD( "95008771.bin", 0x000000, 0x100000, CRC(121b6db2) SHA1(634f435635fcb08013729629fc8f56a4180c2034) ) \
+ ROM_LOAD( "95008772.bin", 0x100000, 0x100000, CRC(c8813870) SHA1(5c4571a3ca9a06c49e80c5e10e9fd288de560324) ) \
#define sc_btiab_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -169,8 +178,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_bpb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008553.bin", 0x0000, 0x100000, CRC(f8019fb2) SHA1(aa5baed73538ebc6e39c6e35437b77a5cc22135e) ) \
- ROM_LOAD( "95008554.bin", 0x0000, 0x100000, CRC(8e00a011) SHA1(821686d96ee6fb45ab0b771934ce25ab7a230c0c) ) \
+ ROM_LOAD( "95008553.bin", 0x000000, 0x100000, CRC(f8019fb2) SHA1(aa5baed73538ebc6e39c6e35437b77a5cc22135e) ) \
+ ROM_LOAD( "95008554.bin", 0x100000, 0x100000, CRC(8e00a011) SHA1(821686d96ee6fb45ab0b771934ce25ab7a230c0c) ) \
#define sc_bull_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -183,21 +192,21 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_butch_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008604.bin", 0x0000, 0x100000, CRC(dede59e0) SHA1(de56b80d0a53fbb18acce2b907f48801e8fced12) ) \
- ROM_LOAD( "95008605.bin", 0x0000, 0x100000, CRC(3db1a818) SHA1(2c20d39dc0d7eb3996209a0b34afae3cd2eebbdc) ) \
+ ROM_LOAD( "95008604.bin", 0x000000, 0x100000, CRC(dede59e0) SHA1(de56b80d0a53fbb18acce2b907f48801e8fced12) ) \
+ ROM_LOAD( "95008605.bin", 0x100000, 0x100000, CRC(3db1a818) SHA1(2c20d39dc0d7eb3996209a0b34afae3cd2eebbdc) ) \
#define sc_cbrun_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
#define sc_cfact_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008508.bin", 0x0000, 0x100000, CRC(97d26d77) SHA1(828e3797184b39e1b8fd788253071f323f2d890e) ) \
- ROM_LOAD( "95008509.bin", 0x0000, 0x100000, CRC(8d1e1f36) SHA1(8976a74c050158fc63fbcbfbadd3f41fca187a24) ) \
+ ROM_LOAD( "95008508.bin", 0x000000, 0x100000, CRC(97d26d77) SHA1(828e3797184b39e1b8fd788253071f323f2d890e) ) \
+ ROM_LOAD( "95008509.bin", 0x100000, 0x100000, CRC(8d1e1f36) SHA1(8976a74c050158fc63fbcbfbadd3f41fca187a24) ) \
#define sc_ctit_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008762.bin", 0x0000, 0x100000, CRC(cf7fc030) SHA1(0c34d9b35eb6229ae48b27f2f88ff682b4601816) ) \
- ROM_LOAD( "95008763.bin", 0x0000, 0x100000, CRC(767b94d9) SHA1(5cac6831e54af03eea065143c04bda54f44fec7d) ) \
+ ROM_LOAD( "95008762.bin", 0x000000, 0x100000, CRC(cf7fc030) SHA1(0c34d9b35eb6229ae48b27f2f88ff682b4601816) ) \
+ ROM_LOAD( "95008763.bin", 0x100000, 0x100000, CRC(767b94d9) SHA1(5cac6831e54af03eea065143c04bda54f44fec7d) ) \
#define sc_craid_others \
ROM_REGION( 0x5000, "pics", 0 ) \
@@ -241,8 +250,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_clnot_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009135.bin", 0x0000, 0x100000, CRC(af699e46) SHA1(e8f685847f4eb83a67074cae92ed59e96f37653b) ) \
- ROM_LOAD( "95009136.bin", 0x0000, 0x100000, CRC(cd1ea94c) SHA1(8010ba1490c656f870230611d15255db175a5a49) ) \
+ ROM_LOAD( "95009135.bin", 0x000000, 0x100000, CRC(af699e46) SHA1(e8f685847f4eb83a67074cae92ed59e96f37653b) ) \
+ ROM_LOAD( "95009136.bin", 0x100000, 0x100000, CRC(cd1ea94c) SHA1(8010ba1490c656f870230611d15255db175a5a49) ) \
#define sc_clus_others \
ROM_REGION( 0x5000, "pics", 0 ) \
@@ -254,31 +263,31 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_cmony_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009031.bin", 0x0000, 0x100000, CRC(58ded502) SHA1(27c05614b03b51fe4a168b8c64535ec3ca9e85c1) ) \
- ROM_LOAD( "95009032.bin", 0x0000, 0x100000, CRC(e1eb711a) SHA1(f6c0c10992f2aacd6f9fadc4e15d8ad5ba5b4ed8) ) \
- ROM_LOAD( "95009124.bin", 0x0000, 0x100000, CRC(798d8d5a) SHA1(931bfca5d204c62fc834959d9babcd9488fc7f07) ) \
- ROM_LOAD( "95009125.bin", 0x0000, 0x100000, CRC(d6090812) SHA1(16ca4868725eff0cc4bd056d751dc7861c1e53a1) ) \
+ ROM_LOAD( "95009031.bin", 0x000000, 0x100000, CRC(58ded502) SHA1(27c05614b03b51fe4a168b8c64535ec3ca9e85c1) ) \
+ ROM_LOAD( "95009032.bin", 0x100000, 0x100000, CRC(e1eb711a) SHA1(f6c0c10992f2aacd6f9fadc4e15d8ad5ba5b4ed8) ) \
+ ROM_LOAD( "95009124.bin", 0x000000, 0x100000, CRC(798d8d5a) SHA1(931bfca5d204c62fc834959d9babcd9488fc7f07) ) \
+ ROM_LOAD( "95009125.bin", 0x100000, 0x100000, CRC(d6090812) SHA1(16ca4868725eff0cc4bd056d751dc7861c1e53a1) ) \
#define sc_cfnc_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009178.bin", 0x0000, 0x100000, CRC(eb938e0a) SHA1(978fa5554462d5d2cbf6a696c6c754318e950223) ) \
- ROM_LOAD( "95009179.bin", 0x0000, 0x100000, CRC(baf8b8b7) SHA1(43b967f3909270b99b563dab4bd1035079a5cb78) ) \
+ ROM_LOAD( "95009178.bin", 0x000000, 0x100000, CRC(eb938e0a) SHA1(978fa5554462d5d2cbf6a696c6c754318e950223) ) \
+ ROM_LOAD( "95009179.bin", 0x100000, 0x100000, CRC(baf8b8b7) SHA1(43b967f3909270b99b563dab4bd1035079a5cb78) ) \
#define sc_cfcp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009035.bin", 0x0000, 0x100000, CRC(8138c442) SHA1(ceaeb84a27d0e3eba8d3a9a7c76e86b4214178c9) ) \
- ROM_LOAD( "95009036.bin", 0x0000, 0x100000, CRC(757f44b9) SHA1(61fe15024f7c7f97f865b1b666a5f837a57446a5) ) \
+ ROM_LOAD( "95009035.bin", 0x000000, 0x100000, CRC(8138c442) SHA1(ceaeb84a27d0e3eba8d3a9a7c76e86b4214178c9) ) \
+ ROM_LOAD( "95009036.bin", 0x100000, 0x100000, CRC(757f44b9) SHA1(61fe15024f7c7f97f865b1b666a5f837a57446a5) ) \
#define sc_cfpt_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008348.bin", 0x0000, 0x100000, CRC(9c6db3d1) SHA1(f2f613326d0a8c0a1c2e1eea1e91ed34cd344f41) ) \
- ROM_LOAD( "95008349.bin", 0x0000, 0x100000, CRC(6f7716a0) SHA1(75f8fbee605b96e36e8596068dd4570928a5a02d) ) \
- ROM_LOAD( "95008363.bin", 0x0000, 0x100000, CRC(6d211d7b) SHA1(59dbb6201aa355a585253d17302e4f8ceed9a220) ) \
+ ROM_LOAD( "95008363.bin", 0x000000, 0x100000, CRC(6d211d7b) SHA1(59dbb6201aa355a585253d17302e4f8ceed9a220) ) \
+ ROM_LOAD( "95008348.bin", 0x000000, 0x100000, CRC(9c6db3d1) SHA1(f2f613326d0a8c0a1c2e1eea1e91ed34cd344f41) ) \
+ ROM_LOAD( "95008349.bin", 0x100000, 0x100000, CRC(6f7716a0) SHA1(75f8fbee605b96e36e8596068dd4570928a5a02d) ) \
#define sc_cknig_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009193.bin", 0x0000, 0x100000, CRC(6c3cb54b) SHA1(a140209d19f9cbd18ede08924b94718264ba4118) ) \
- ROM_LOAD( "95009194.bin", 0x0000, 0x100000, CRC(44229686) SHA1(eda0481282614e6bd82985486ef4eea0eb0ddccd) ) \
+ ROM_LOAD( "95009193.bin", 0x000000, 0x100000, CRC(6c3cb54b) SHA1(a140209d19f9cbd18ede08924b94718264ba4118) ) \
+ ROM_LOAD( "95009194.bin", 0x100000, 0x100000, CRC(44229686) SHA1(eda0481282614e6bd82985486ef4eea0eb0ddccd) ) \
#define sc_cpays_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -295,11 +304,13 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_cmous_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
ROM_LOAD( "95008439.bin", 0x0000, 0x0e94e0, CRC(9bcded46) SHA1(9f1b431ac010f2ab9a8d393b167ff81baf7f86a5) ) \
- ROM_LOAD( "95008947.bin", 0x0000, 0x0fc44b, CRC(457a86c3) SHA1(e36ba57a981bb0f8b581c4b8e1ddd6e55c24bf00) ) \
ROM_REGION( 0x5000, "pics", 0 ) \
ROM_LOAD( "95890395.bin", 0x0000, 0x5000, CRC(31480d43) SHA1(9ac6254b539d57f79fbb2483948db393ca4823eb) ) \
ROM_LOAD( "95890396.bin", 0x0000, 0x5000, CRC(2d9efdff) SHA1(0b6642bb202092eb1ef8791a3a1f2b79ad1b5fff) ) \
ROM_LOAD( "95890397.bin", 0x0000, 0x5000, CRC(eec4df6f) SHA1(b4fd028f28fa43d54c6aaf6062ba79a37f232025) ) \
+ ROM_REGION( 0x400000, "others", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "95008947.bin", 0x0000, 0x0fc44b, CRC(457a86c3) SHA1(e36ba57a981bb0f8b581c4b8e1ddd6e55c24bf00) ) /* cash & mouse s16 sounds */ \
+
#define sc_cnfr_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -316,9 +327,11 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_cconx_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "mtom sounds", 0x000000, 0x100000, NO_DUMP ) \
#define sc_ccrus_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "cash sounds", 0x000000, 0x100000, NO_DUMP ) \
#define sc_cerup_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -328,6 +341,7 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_chand_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "pr7108 cash in hand sounds11", 0x000000, 0x100000, NO_DUMP ) \
#define sc_clash_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -347,8 +361,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_chub_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004109", 0x0000, 0x080000, CRC(2e3e2f6e) SHA1(217197bdbcd27271afce7809de7c49cca4ef3656) ) \
- ROM_LOAD( "95004110", 0x0000, 0x080000, CRC(29f3caef) SHA1(dddf38b3da4b9756103b32de4d5d12d612223298) ) \
+ ROM_LOAD( "95004109", 0x000000, 0x080000, CRC(2e3e2f6e) SHA1(217197bdbcd27271afce7809de7c49cca4ef3656) ) \
+ ROM_LOAD( "95004110", 0x080000, 0x080000, CRC(29f3caef) SHA1(dddf38b3da4b9756103b32de4d5d12d612223298) ) \
#define sc_cla7_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -363,8 +377,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_colos_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004235.sn1", 0x0000, 0x080000, CRC(e543f4ab) SHA1(7d72f1392fbd43afe390d4f3059b06cd789528d4) ) \
- ROM_LOAD( "95004236.sn2", 0x0000, 0x080000, CRC(0f26a957) SHA1(b0949534d44dd22b6f676203f52fad978b36d04b) ) \
+ ROM_LOAD( "95004235.sn1", 0x000000, 0x080000, CRC(e543f4ab) SHA1(7d72f1392fbd43afe390d4f3059b06cd789528d4) ) \
+ ROM_LOAD( "95004236.sn2", 0x080000, 0x080000, CRC(0f26a957) SHA1(b0949534d44dd22b6f676203f52fad978b36d04b) ) \
#define sc_cyc_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -377,16 +391,17 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_crzcs_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
/* start is empty?? */ \
- ROM_LOAD( "95008005.lo", 0x00000, 0x100000, CRC(0b10db9f) SHA1(e0ea7b4f2dd98ef23ab42ffe7a7892e5327f646e) ) \
+ ROM_LOAD( "95008005.lo", 0x00000, 0x100000, BAD_DUMP CRC(0b10db9f) SHA1(e0ea7b4f2dd98ef23ab42ffe7a7892e5327f646e) ) \
ROM_LOAD( "95008006.hi", 0x100000, 0x100000, CRC(be2cdfd5) SHA1(87e25d6e26052dca8d79fbda705b2df1c06e2c67) ) \
#define sc_crzwl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "crazy world sounds", 0x0000, 0x100000, NO_DUMP ) \
#define sc_cccsh_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004173", 0x0000, 0x080000, CRC(67970fed) SHA1(938414921a0956841ce4447471b7663f5c2c2d4f) ) \
- ROM_LOAD( "95004174", 0x0000, 0x080000, CRC(1f1dd01f) SHA1(6ed312c1e50056bf3cae156e595b26374d7d4816) ) \
+ ROM_LOAD( "95004173", 0x000000, 0x080000, CRC(67970fed) SHA1(938414921a0956841ce4447471b7663f5c2c2d4f) ) \
+ ROM_LOAD( "95004174", 0x080000, 0x080000, CRC(1f1dd01f) SHA1(6ed312c1e50056bf3cae156e595b26374d7d4816) ) \
#define sc_ckx_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -454,9 +469,9 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_cfqps_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004101.bin", 0x0000, 0x080000, CRC(31e5785a) SHA1(8da2bd3571640b0ae23e9fdcc2235dcf9d2de122) ) \
- ROM_LOAD( "95004102.bin", 0x0000, 0x080000, CRC(bf059b21) SHA1(89a96c593e5385e9b40f694768986691eed4b5c5) ) \
- ROM_LOAD( "95008339.bin", 0x0000, 0x100000, CRC(bae07fa8) SHA1(a86a5d9ff6ac802bd15275f46894374317627e23) ) \
+ ROM_LOAD( "95004101.bin", 0x000000, 0x080000, CRC(31e5785a) SHA1(8da2bd3571640b0ae23e9fdcc2235dcf9d2de122) ) \
+ ROM_LOAD( "95004102.bin", 0x080000, 0x080000, CRC(bf059b21) SHA1(89a96c593e5385e9b40f694768986691eed4b5c5) ) \
+ ROM_LOAD( "95008339.bin", 0x000000, 0x100000, CRC(bae07fa8) SHA1(a86a5d9ff6ac802bd15275f46894374317627e23) ) \
\
ROM_REGION( 0x400000, "others", ROMREGION_ERASE00 ) \
ROM_LOAD( "95420324.bin", 0x0000, 0x100000, CRC(41729e8f) SHA1(adb15067f61eb2e4adf537137dd24876749da8a2) ) \
@@ -464,14 +479,14 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_czfr_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
/* 3 different sets of sound! */ \
- ROM_LOAD( "crazy sound 1.bin", 0x0000, 0x080000, CRC(31e5785a) SHA1(8da2bd3571640b0ae23e9fdcc2235dcf9d2de122) ) \
- ROM_LOAD( "crazy sound 2.bin", 0x0000, 0x080000, CRC(bf059b21) SHA1(89a96c593e5385e9b40f694768986691eed4b5c5) ) \
+ ROM_LOAD( "crazy sound 1.bin", 0x000000, 0x080000, CRC(31e5785a) SHA1(8da2bd3571640b0ae23e9fdcc2235dcf9d2de122) ) \
+ ROM_LOAD( "crazy sound 2.bin", 0x080000, 0x080000, CRC(bf059b21) SHA1(89a96c593e5385e9b40f694768986691eed4b5c5) ) \
\
- ROM_LOAD( "95004150.bin", 0x0000, 0x080000, CRC(7707ea0d) SHA1(efe187a4c64a3a5f8d10e21c269afbb603186ae7) ) \
- ROM_LOAD( "95004151.bin", 0x0000, 0x080000, CRC(54845756) SHA1(e53dfa8f836044232ee1a8006051ef586ac24d8c) ) \
+ ROM_LOAD( "95004150.bin", 0x000000, 0x080000, CRC(7707ea0d) SHA1(efe187a4c64a3a5f8d10e21c269afbb603186ae7) ) \
+ ROM_LOAD( "95004151.bin", 0x080000, 0x080000, CRC(54845756) SHA1(e53dfa8f836044232ee1a8006051ef586ac24d8c) ) \
\
- ROM_LOAD( "95004280.sn1", 0x0000, 0x080000, CRC(44d1b0d9) SHA1(2e361a1b65955acecbc26ba47000e4ef6316a22d) ) \
- ROM_LOAD( "95004281.sn2", 0x0000, 0x080000, CRC(31f057f3) SHA1(a6415eee8499ada43225901dee2d12c93d494658) ) \
+ ROM_LOAD( "95004280.sn1", 0x000000, 0x080000, CRC(44d1b0d9) SHA1(2e361a1b65955acecbc26ba47000e4ef6316a22d) ) \
+ ROM_LOAD( "95004281.sn2", 0x080000, 0x080000, CRC(31f057f3) SHA1(a6415eee8499ada43225901dee2d12c93d494658) ) \
\
ROM_REGION( 0x400000, "others", ROMREGION_ERASE00 ) \
ROM_LOAD( "ccfsnd.bin", 0x0000, 0x02196a, CRC(15e542c2) SHA1(9bd9218b7392c882f68e330619bea7996afd001e) ) /* oki sound rom, doubt it belongs here */ \
@@ -480,8 +495,8 @@ INPUT_PORTS_EXTERN( sc4 );
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
ROM_LOAD( "95008469.bin", 0x0000, 0x100000, CRC(07df5a41) SHA1(56dacba05e26258e50085f78dfe965196917addf) ) /* PR1608 CROWN JEWELS SOUNDS11 */ \
\
- ROM_LOAD( "95009176.bin", 0x0000, 0x100000, CRC(d1db2564) SHA1(641f94108df9dffde599012018d944e3848f50ed) ) /* PR000055 CJEWELS */ \
- ROM_LOAD( "95009177.bin", 0x0000, 0x100000, CRC(e574cc1c) SHA1(760284d60d336571495da921ff666ac5725d7c19) ) \
+ ROM_LOAD( "95009176.bin", 0x000000, 0x100000, CRC(d1db2564) SHA1(641f94108df9dffde599012018d944e3848f50ed) ) /* PR000055 CJEWELS */ \
+ ROM_LOAD( "95009177.bin", 0x100000, 0x100000, CRC(e574cc1c) SHA1(760284d60d336571495da921ff666ac5725d7c19) ) \
#define sc_cclim_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -501,40 +516,45 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_cinv_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "pr6809 cashinvaders sounds", 0x0000, 0x100000, NO_DUMP ) \
#define sc_crotr_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009049.bin", 0x0000, 0x100000, CRC(10c94788) SHA1(8fb5113036a0122a4dbc9af15b600ffe99e51094) ) \
- ROM_LOAD( "95009050.bin", 0x0000, 0x100000, CRC(5e47e86c) SHA1(9aaca1390852f9079cd355c48b889fb5962c5c09) ) \
+ ROM_LOAD( "95009049.bin", 0x000000, 0x100000, CRC(10c94788) SHA1(8fb5113036a0122a4dbc9af15b600ffe99e51094) ) \
+ ROM_LOAD( "95009050.bin", 0x100000, 0x100000, CRC(5e47e86c) SHA1(9aaca1390852f9079cd355c48b889fb5962c5c09) ) \
#define sc_crsgc_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
#define sc_crsgr_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009139.bin", 0x0000, 0x100000, CRC(f2e4fa3c) SHA1(1909de32f232e5bfb3ee3c624f29c585cca254c2) ) \
- ROM_LOAD( "95009140.bin", 0x0000, 0x100000, CRC(81bdf47f) SHA1(49c02fb87a4ffc1be4c748c469f5518c314b1391) ) \
+ ROM_LOAD( "95009139.bin", 0x000000, 0x100000, CRC(f2e4fa3c) SHA1(1909de32f232e5bfb3ee3c624f29c585cca254c2) ) \
+ ROM_LOAD( "95009140.bin", 0x100000, 0x100000, CRC(81bdf47f) SHA1(49c02fb87a4ffc1be4c748c469f5518c314b1391) ) \
#define sc_copsr_others \
- ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "cops_rob_snd.bin", 0x0000, 0x080000, CRC(e25bddb7) SHA1(96d6be2407bf876ad685bdc13d96585782ad4a50) ) \
+ ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) /* PR1412 */ \
ROM_LOAD( "95008393.bin", 0x0000, 0x100000, CRC(693cd9be) SHA1(e965b2dcd6d6619815c919b7d2c372c726abfea3) ) \
+ ROM_REGION( 0x400000, "others1", ROMREGION_ERASE00 ) /* PR3206 */ \
ROM_LOAD( "95008787.bin", 0x0000, 0x100000, CRC(82713d8b) SHA1(317cb1c482bd13e1cad2e5739c99f6e3ca163684) ) \
+ ROM_REGION( 0x400000, "others2", ROMREGION_ERASE00 ) /* PR3255 */ \
ROM_LOAD( "95008846.bin", 0x0000, 0x080000, CRC(44f9eaab) SHA1(394bd36121c33aba97bc957b3d46d2944c1daeed) ) \
+ ROM_REGION( 0x400000, "others3", ROMREGION_ERASE00 ) /* PR3255 (alt checksum, many more sounds) */ \
ROM_LOAD( "95009130.bin", 0x0000, 0x100000, CRC(f6813371) SHA1(bd9e5d009c7870d50149d9de396f363fb19b183c) ) \
+ ROM_REGION( 0x400000, "others4", ROMREGION_ERASE00 ) /* bad? no header */ \
+ ROM_LOAD( "cops_rob_snd.bin", 0x0000, 0x080000, CRC(e25bddb7) SHA1(96d6be2407bf876ad685bdc13d96585782ad4a50) ) \
#define sc_crcpt_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
#define sc_corst_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009037.bin", 0x0000, 0x100000, CRC(c2d3b6ee) SHA1(36e7e9c956ab91fd1b2e52800b4482ce3a3597f5) ) \
- ROM_LOAD( "95009038.bin", 0x0000, 0x100000, CRC(45dc4df3) SHA1(7710a0ba9bbe7ae6f590b61bbc1395cd408926d2) ) \
+ ROM_LOAD( "95009037.bin", 0x000000, 0x100000, CRC(c2d3b6ee) SHA1(36e7e9c956ab91fd1b2e52800b4482ce3a3597f5) ) \
+ ROM_LOAD( "95009038.bin", 0x100000, 0x100000, CRC(45dc4df3) SHA1(7710a0ba9bbe7ae6f590b61bbc1395cd408926d2) ) \
#define sc_coro_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008939.bin", 0x0000, 0x100000, CRC(02c9a21d) SHA1(7f27a8d706a7d66feafc5faab23ee28ebfa02b53) ) \
- ROM_LOAD( "95008940.bin", 0x0000, 0x05fdb4, CRC(09c8a19a) SHA1(21a58f8183c29d61c0132c2fc7339e459521a16e) ) \
+ ROM_LOAD( "95008939.bin", 0x000000, 0x100000, CRC(02c9a21d) SHA1(7f27a8d706a7d66feafc5faab23ee28ebfa02b53) ) \
+ ROM_LOAD( "95008940.bin", 0x100000, 0x05fdb4, CRC(09c8a19a) SHA1(21a58f8183c29d61c0132c2fc7339e459521a16e) ) \
ROM_REGION( 0x5000, "pics", 0 ) \
ROM_LOAD( "95890365.bin", 0x0000, 0x5000, CRC(12f90bc7) SHA1(09cdfddfa7fb430eccd87d677673f203120bef51) ) \
ROM_LOAD( "95890366.bin", 0x0000, 0x5000, CRC(676f4ff3) SHA1(c6a3c2b01b79e9abaa249b548fb59584c63fc682) ) \
@@ -550,8 +570,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_corcl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008867.bin", 0x0000, 0x100000, CRC(b11779d2) SHA1(720d30445232baa18e613259bded1a6827777de6) ) \
- ROM_LOAD( "95008868.bin", 0x0000, 0x05fdb4, CRC(424b08e5) SHA1(fc0fe01516c0c6bb20adcf2bf8b1263ff59657e8) ) \
+ ROM_LOAD( "95008867.bin", 0x000000, 0x100000, CRC(b11779d2) SHA1(720d30445232baa18e613259bded1a6827777de6) ) \
+ ROM_LOAD( "95008868.bin", 0x100000, 0x05fdb4, CRC(424b08e5) SHA1(fc0fe01516c0c6bb20adcf2bf8b1263ff59657e8) ) \
ROM_REGION( 0x5000, "pics", 0 ) \
ROM_LOAD( "95890770.bin", 0x0000, 0x5000, CRC(551ab279) SHA1(39e4c16f3cc708d84762ba5b80c720cbbc123f0d) ) /* why is this in an sc4 set? */ \
@@ -572,13 +592,13 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_daylt_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "daylsnd1.bin", 0x0000, 0x080000, CRC(4510d156) SHA1(b001bdf3bfad6124647f640065b411c07c8cf555) ) \
- ROM_LOAD( "daylsnd2.bin", 0x0000, 0x080000, CRC(71a1428f) SHA1(029ae979f192bcd7704ae78aba14815acdabe60f) ) \
+ ROM_LOAD( "daylsnd1.bin", 0x000000, 0x080000, CRC(4510d156) SHA1(b001bdf3bfad6124647f640065b411c07c8cf555) ) \
+ ROM_LOAD( "daylsnd2.bin", 0x080000, 0x080000, CRC(71a1428f) SHA1(029ae979f192bcd7704ae78aba14815acdabe60f) ) \
#define sc_derby_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008129.bin", 0x0000, 0x100000, CRC(4892cf07) SHA1(9ce745f4b3aee623a7855e2fee4cc35de20646a3) ) \
- ROM_LOAD( "95008130.bin", 0x0000, 0x100000, CRC(b9bfde2a) SHA1(25329d5b93318586095715111fbbb854bba394b9) ) \
+ ROM_LOAD( "95008129.bin", 0x000000, 0x100000, CRC(4892cf07) SHA1(9ce745f4b3aee623a7855e2fee4cc35de20646a3) ) \
+ ROM_LOAD( "95008130.bin", 0x100000, 0x100000, CRC(b9bfde2a) SHA1(25329d5b93318586095715111fbbb854bba394b9) ) \
#define sc_deepi_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -590,8 +610,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_dhh_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008586.bin", 0x0000, 0x100000, CRC(43fde3ad) SHA1(662402449b025bbf75a10c3b1ac746d9359b0b0d) ) \
- ROM_LOAD( "95008587.bin", 0x0000, 0x100000, CRC(6f7a607f) SHA1(da3c8aaa69b30f10f122a9bde49d987dd0950474) ) \
+ ROM_LOAD( "95008586.bin", 0x000000, 0x100000, CRC(43fde3ad) SHA1(662402449b025bbf75a10c3b1ac746d9359b0b0d) ) \
+ ROM_LOAD( "95008587.bin", 0x100000, 0x100000, CRC(6f7a607f) SHA1(da3c8aaa69b30f10f122a9bde49d987dd0950474) ) \
#define sc_dmine_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -600,32 +620,33 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_dnd_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
/* Regular */ \
- ROM_LOAD( "95008606.bin", 0x0000, 0x100000, CRC(c63c8663) SHA1(4718baf87340fe93ccfe642a1a0cdb9d9dcac57f) ) /* 0 (1907) DOND SOUNDS 11 */ \
- ROM_LOAD( "95008607.bin", 0x0000, 0x100000, CRC(a615514f) SHA1(d4ff7d4fe6f1dd1d7b00cc504f90b2921aa5e8fb) ) /* 1 */ \
+ ROM_LOAD( "95008606.bin", 0x000000, 0x100000, CRC(c63c8663) SHA1(4718baf87340fe93ccfe642a1a0cdb9d9dcac57f) ) /* 0 (1907) DOND SOUNDS 11 */ \
+ ROM_LOAD( "95008607.bin", 0x100000, 0x100000, CRC(a615514f) SHA1(d4ff7d4fe6f1dd1d7b00cc504f90b2921aa5e8fb) ) /* 1 */ \
\
+ ROM_REGION( 0x400000, "others", ROMREGION_ERASE00 ) \
/* Casino */ \
- ROM_LOAD( "95008631.bin", 0x0000, 0x100000, CRC(7208854a) SHA1(a02de60cfcbafe5da4f67596ab65237f5b5f41b7) ) /* 0 (1954) DOND SOUNDS 11 */ \
+ ROM_LOAD( "95008631.bin", 0x000000, 0x100000, CRC(7208854a) SHA1(a02de60cfcbafe5da4f67596ab65237f5b5f41b7) ) /* 0 (1954) DOND SOUNDS 11 */ \
\
- ROM_LOAD( "95008632.bin", 0x0000, 0x100000, CRC(fd81a317) SHA1(1e597fd58aab5a7a8321dc4daf138ee07b42c094) ) /* 0 (1945) DOND SOUNDS 11 */ \
- ROM_LOAD( "95008633.bin", 0x0000, 0x100000, CRC(a7a445d4) SHA1(dbb1938c33ce654c2d4aa3b6af8c210f5aad2ae3) ) /* 1 */ \
+ ROM_LOAD( "95008632.bin", 0x000000, 0x100000, CRC(fd81a317) SHA1(1e597fd58aab5a7a8321dc4daf138ee07b42c094) ) /* 0 (1945) DOND SOUNDS 11 */ \
+ ROM_LOAD( "95008633.bin", 0x100000, 0x100000, CRC(a7a445d4) SHA1(dbb1938c33ce654c2d4aa3b6af8c210f5aad2ae3) ) /* 1 */ \
\
/* Casino */ \
- ROM_LOAD( "95008661.bin", 0x0000, 0x100000, CRC(2d9ebcd5) SHA1(d824a227420cbe616aca6e2fd279af691ddfd87a) ) /* 0 (1945) DOND SOUNDS 12 */ \
+ ROM_LOAD( "95008661.bin", 0x000000, 0x100000, CRC(2d9ebcd5) SHA1(d824a227420cbe616aca6e2fd279af691ddfd87a) ) /* 0 (1945) DOND SOUNDS 12 */ \
\
- ROM_LOAD( "95008680.bin", 0x0000, 0x100000, CRC(9bd439d1) SHA1(5e71d04e5697e92998bae28f7352ea7742cafe07) ) /* 0 (1964) DOND SOUNDS 11 */ \
+ ROM_LOAD( "95008680.bin", 0x000000, 0x100000, CRC(9bd439d1) SHA1(5e71d04e5697e92998bae28f7352ea7742cafe07) ) /* 0 (1964) DOND SOUNDS 11 */ \
\
- ROM_LOAD( "95008698.bin", 0x0000, 0x100000, CRC(8eea7754) SHA1(7612c128d6c062bba3477d55aee3089e1255f61e) ) /* 0 (1964) DOND SOUNDS 12 */ \
+ ROM_LOAD( "95008698.bin", 0x000000, 0x100000, CRC(8eea7754) SHA1(7612c128d6c062bba3477d55aee3089e1255f61e) ) /* 0 (1964) DOND SOUNDS 12 */ \
#define sc_dndbb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008788.bin", 0x0000, 0x100000, CRC(51384d64) SHA1(3af87bcc7fb4881ae671d9cbb484fb6a2a534cce) ) \
- ROM_LOAD( "95008789.bin", 0x0000, 0x100000, CRC(4f2d72c3) SHA1(f167ad8d7178682833e7e9efcc393b5826108d70) ) \
+ ROM_LOAD( "95008788.bin", 0x000000, 0x100000, CRC(51384d64) SHA1(3af87bcc7fb4881ae671d9cbb484fb6a2a534cce) ) \
+ ROM_LOAD( "95008789.bin", 0x100000, 0x100000, CRC(4f2d72c3) SHA1(f167ad8d7178682833e7e9efcc393b5826108d70) ) \
#define sc_dndbo_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009158.bin", 0x0000, 0x100000, CRC(27f11b81) SHA1(f2690c2828ad09d73cb14c5c1cb53c2ad1fc7b53) ) \
- ROM_LOAD( "95009159.bin", 0x0000, 0x100000, CRC(95e278c8) SHA1(7d85b6dbe3ccacd6c5a5b4eb475598a3d5548ce0) ) \
+ ROM_LOAD( "95009158.bin", 0x000000, 0x100000, CRC(27f11b81) SHA1(f2690c2828ad09d73cb14c5c1cb53c2ad1fc7b53) ) \
+ ROM_LOAD( "95009159.bin", 0x100000, 0x100000, CRC(95e278c8) SHA1(7d85b6dbe3ccacd6c5a5b4eb475598a3d5548ce0) ) \
#define sc_dndbl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -641,125 +662,126 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_dndcl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
/* club dond */ \
- ROM_LOAD( "95008629.bin", 0x0000, 0x100000, CRC(6f7cf500) SHA1(bf3db728872251116b32aa2c44f72a87d29b13d2) ) \
- ROM_LOAD( "95008630.bin", 0x0000, 0x100000, CRC(5dfda41e) SHA1(6d61d0eedc6a1599777f47d3880689f954f326c9) ) \
+ ROM_LOAD( "95008629.bin", 0x000000, 0x100000, CRC(6f7cf500) SHA1(bf3db728872251116b32aa2c44f72a87d29b13d2) ) \
+ ROM_LOAD( "95008630.bin", 0x100000, 0x100000, CRC(5dfda41e) SHA1(6d61d0eedc6a1599777f47d3880689f954f326c9) ) \
+ ROM_REGION( 0x400000, "others", ROMREGION_ERASE00 ) \
/* beat the banker */ \
- ROM_LOAD( "95008713.bin", 0x0000, 0x100000, CRC(7311db5e) SHA1(24a4b3f44fa6dbbe756b0acac2b513c6e92cdf26) ) /* R3068? */ \
- ROM_LOAD( "95008714.bin", 0x0000, 0x100000, CRC(c6ebc845) SHA1(6a135f42940b8c44422736650e369fa12b51e0df) ) \
+ ROM_LOAD( "95008713.bin", 0x000000, 0x100000, CRC(7311db5e) SHA1(24a4b3f44fa6dbbe756b0acac2b513c6e92cdf26) ) /* R3068? */ \
+ ROM_LOAD( "95008714.bin", 0x100000, 0x100000, CRC(c6ebc845) SHA1(6a135f42940b8c44422736650e369fa12b51e0df) ) \
#define sc_dndcr_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009033.bin", 0x0000, 0x100000, CRC(4e167844) SHA1(d0e7101fe033bc9fc0e279c3d457a7da8e8aab00) ) \
- ROM_LOAD( "95009034.bin", 0x0000, 0x100000, CRC(a3e7b40a) SHA1(09f1fde693750f15e78da91c796e8593d06d19e9) ) \
+ ROM_LOAD( "95009033.bin", 0x000000, 0x100000, CRC(4e167844) SHA1(d0e7101fe033bc9fc0e279c3d457a7da8e8aab00) ) \
+ ROM_LOAD( "95009034.bin", 0x100000, 0x100000, CRC(a3e7b40a) SHA1(09f1fde693750f15e78da91c796e8593d06d19e9) ) \
#define sc_dnddd_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
/* dond double */ \
- ROM_LOAD( "95008804.bin", 0x0000, 0x100000, CRC(19fd19fa) SHA1(db68a40d8bb3de130c6d5777217fb3c3a4c13d17) ) \
- ROM_LOAD( "95008805.bin", 0x0000, 0x100000, CRC(f497337d) SHA1(9e827116f8b1d882cfcd0b56aaede9de14b2e943) ) \
+ ROM_LOAD( "95008804.bin", 0x000000, 0x100000, CRC(19fd19fa) SHA1(db68a40d8bb3de130c6d5777217fb3c3a4c13d17) ) \
+ ROM_LOAD( "95008805.bin", 0x100000, 0x100000, CRC(f497337d) SHA1(9e827116f8b1d882cfcd0b56aaede9de14b2e943) ) \
#define sc_dndde_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009053.bin", 0x0000, 0x100000, CRC(f06acb47) SHA1(043756eda04d193f7365f2fd0fafc36c3b6b0bd9) ) \
- ROM_LOAD( "95009054.bin", 0x0000, 0x100000, CRC(595baae8) SHA1(9aa03b265294eaed0051b0a25cc9a0e1481b4390) ) \
+ ROM_LOAD( "95009053.bin", 0x000000, 0x100000, CRC(f06acb47) SHA1(043756eda04d193f7365f2fd0fafc36c3b6b0bd9) ) \
+ ROM_LOAD( "95009054.bin", 0x100000, 0x100000, CRC(595baae8) SHA1(9aa03b265294eaed0051b0a25cc9a0e1481b4390) ) \
#define sc_dnddi_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009191.bin", 0x0000, 0x100000, CRC(2f3cda1a) SHA1(017533caadf86d0d70e1b57b697621e0b4a8fef2) ) \
- ROM_LOAD( "95009192.bin", 0x0000, 0x100000, CRC(eb9b6b0b) SHA1(127bb283b32a997c04a1b29c18f4093f4d969151) ) \
+ ROM_LOAD( "95009191.bin", 0x000000, 0x100000, CRC(2f3cda1a) SHA1(017533caadf86d0d70e1b57b697621e0b4a8fef2) ) \
+ ROM_LOAD( "95009192.bin", 0x100000, 0x100000, CRC(eb9b6b0b) SHA1(127bb283b32a997c04a1b29c18f4093f4d969151) ) \
#define sc_dnddt_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009106.bin", 0x0000, 0x100000, CRC(afa266cf) SHA1(adc80bc677a7524bec4bbd102a4a5ff293571abc) ) \
- ROM_LOAD( "95009107.bin", 0x0000, 0x100000, CRC(493981a8) SHA1(77308e453848d092d63330e10e3b1e88caeb4fb5) ) \
+ ROM_LOAD( "95009106.bin", 0x000000, 0x100000, CRC(afa266cf) SHA1(adc80bc677a7524bec4bbd102a4a5ff293571abc) ) \
+ ROM_LOAD( "95009107.bin", 0x100000, 0x100000, CRC(493981a8) SHA1(77308e453848d092d63330e10e3b1e88caeb4fb5) ) \
#define sc_dnddo_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009120.bin", 0x0000, 0x100000, CRC(327c01a0) SHA1(9b7fa28ff6ecc83c2e9ee73aac0af98be170b28f) ) \
- ROM_LOAD( "95009121.bin", 0x0000, 0x100000, CRC(d7991c7e) SHA1(4f4e4043f272ff2325b0fa64c66b34cb1aefb97c) ) \
+ ROM_LOAD( "95009120.bin", 0x000000, 0x100000, CRC(327c01a0) SHA1(9b7fa28ff6ecc83c2e9ee73aac0af98be170b28f) ) \
+ ROM_LOAD( "95009121.bin", 0x100000, 0x100000, CRC(d7991c7e) SHA1(4f4e4043f272ff2325b0fa64c66b34cb1aefb97c) ) \
#define sc_dndfl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008847.bin", 0x0000, 0x100000, CRC(7f3eae56) SHA1(f5d25c87caf76fc1961c8fb5c389bb73cefbcb28) ) \
- ROM_LOAD( "95008848.bin", 0x0000, 0x100000, CRC(ba00c16d) SHA1(f2e55441857e5f036e19d2ee29dfad97b99134b8) ) \
+ ROM_LOAD( "95008847.bin", 0x000000, 0x100000, CRC(7f3eae56) SHA1(f5d25c87caf76fc1961c8fb5c389bb73cefbcb28) ) \
+ ROM_LOAD( "95008848.bin", 0x100000, 0x100000, CRC(ba00c16d) SHA1(f2e55441857e5f036e19d2ee29dfad97b99134b8) ) \
#define sc_dndgo_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009197.bin", 0x0000, 0x100000, CRC(bdf253cb) SHA1(6f046f1c27bae1141919874b27a8d87295b39261) ) \
- ROM_LOAD( "95009198.bin", 0x0000, 0x100000, CRC(420105d4) SHA1(23e4eac4146a3985c3a7dc5f80f1b5900a116303) ) \
+ ROM_LOAD( "95009197.bin", 0x000000, 0x100000, CRC(bdf253cb) SHA1(6f046f1c27bae1141919874b27a8d87295b39261) ) \
+ ROM_LOAD( "95009198.bin", 0x100000, 0x100000, CRC(420105d4) SHA1(23e4eac4146a3985c3a7dc5f80f1b5900a116303) ) \
#define sc_dndgl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009102.bin", 0x0000, 0x100000, CRC(9d03cd95) SHA1(e062c816a19af0dc86bfa5a66f69342e69fffcfa) ) \
- ROM_LOAD( "95009103.bin", 0x0000, 0x100000, CRC(51ae4095) SHA1(b397984d3b0beb4ca95050ff595648a80e5ea87a) ) \
+ ROM_LOAD( "95009102.bin", 0x000000, 0x100000, CRC(9d03cd95) SHA1(e062c816a19af0dc86bfa5a66f69342e69fffcfa) ) \
+ ROM_LOAD( "95009103.bin", 0x100000, 0x100000, CRC(51ae4095) SHA1(b397984d3b0beb4ca95050ff595648a80e5ea87a) ) \
#define sc_dndld_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009184.bin", 0x0000, 0x100000, CRC(25a36077) SHA1(92c05f410456414b825b09338a474c52f7c1bd9b) ) \
- ROM_LOAD( "95009185.bin", 0x0000, 0x100000, CRC(eacdfc26) SHA1(8ab462e7f49ca9374b9245d9d97cf909ea979ae3) ) \
+ ROM_LOAD( "95009184.bin", 0x000000, 0x100000, CRC(25a36077) SHA1(92c05f410456414b825b09338a474c52f7c1bd9b) ) \
+ ROM_LOAD( "95009185.bin", 0x100000, 0x100000, CRC(eacdfc26) SHA1(8ab462e7f49ca9374b9245d9d97cf909ea979ae3) ) \
#define sc_dndmb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009156.bin", 0x0000, 0x100000, CRC(7c68c70c) SHA1(eb4006e185f3cd4e7d66999b3ff064a7903f5bc8) ) \
- ROM_LOAD( "95009157.bin", 0x0000, 0x100000, CRC(a0541504) SHA1(689ba32fd1b1a9592a9cd7039424655a652b1bcd) ) \
+ ROM_LOAD( "95009156.bin", 0x000000, 0x100000, CRC(7c68c70c) SHA1(eb4006e185f3cd4e7d66999b3ff064a7903f5bc8) ) \
+ ROM_LOAD( "95009157.bin", 0x100000, 0x100000, CRC(a0541504) SHA1(689ba32fd1b1a9592a9cd7039424655a652b1bcd) ) \
#define sc_dndmd_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009170.bin", 0x0000, 0x100000, CRC(6ab363a5) SHA1(1a98566161aec187074cbbdb7372ed8484202639) ) \
- ROM_LOAD( "95009171.bin", 0x0000, 0x100000, CRC(bc5d3113) SHA1(836eff78265f6d0371be18467c5edc6d32aba6d5) ) \
+ ROM_LOAD( "95009170.bin", 0x000000, 0x100000, CRC(6ab363a5) SHA1(1a98566161aec187074cbbdb7372ed8484202639) ) \
+ ROM_LOAD( "95009171.bin", 0x100000, 0x100000, CRC(bc5d3113) SHA1(836eff78265f6d0371be18467c5edc6d32aba6d5) ) \
#define sc_dndpa_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009150.bin", 0x0000, 0x100000, CRC(54d9f01a) SHA1(6d62ca07443c42e16243a843dee6a11c7a1383fc) ) \
- ROM_LOAD( "95009151.bin", 0x0000, 0x100000, CRC(89bb7543) SHA1(e8bea8a00798329af590be5e2ccbfcc54f70f98d) ) \
+ ROM_LOAD( "95009150.bin", 0x000000, 0x100000, CRC(54d9f01a) SHA1(6d62ca07443c42e16243a843dee6a11c7a1383fc) ) \
+ ROM_LOAD( "95009151.bin", 0x100000, 0x100000, CRC(89bb7543) SHA1(e8bea8a00798329af590be5e2ccbfcc54f70f98d) ) \
#define sc_ddptg_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009041.bin", 0x0000, 0x100000, CRC(143d05fb) SHA1(f3d2735dc5b1bdc4e3f4205521f1b614d4b4c4b0) ) \
- ROM_LOAD( "95009042.bin", 0x0000, 0x100000, CRC(65efd8fd) SHA1(c7f2d1f6b31767a56269f53e9327de3abe64218f) ) \
+ ROM_LOAD( "95009041.bin", 0x000000, 0x100000, CRC(143d05fb) SHA1(f3d2735dc5b1bdc4e3f4205521f1b614d4b4c4b0) ) \
+ ROM_LOAD( "95009042.bin", 0x100000, 0x100000, CRC(65efd8fd) SHA1(c7f2d1f6b31767a56269f53e9327de3abe64218f) ) \
#define sc_ddply_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008830.bin", 0x0000, 0x100000, CRC(bb66ae0c) SHA1(4a7df180dd67aa96059a83986cb98721a81963d8) ) \
- ROM_LOAD( "95008831.bin", 0x0000, 0x100000, CRC(8a632940) SHA1(e955b05a82312ab356117f348903292d6f26a5a5) ) \
+ ROM_LOAD( "95008830.bin", 0x000000, 0x100000, CRC(bb66ae0c) SHA1(4a7df180dd67aa96059a83986cb98721a81963d8) ) \
+ ROM_LOAD( "95008831.bin", 0x100000, 0x100000, CRC(8a632940) SHA1(e955b05a82312ab356117f348903292d6f26a5a5) ) \
#define sc_dndrr_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009188.bin", 0x0000, 0x100000, CRC(a2dceadd) SHA1(af1696bf32f37005c6a01bb209f38b90daab4e29) ) \
- ROM_LOAD( "95009189.bin", 0x0000, 0x100000, CRC(02b0d336) SHA1(7713212ebf59fa2464110b0238a870e81d43be05) ) \
+ ROM_LOAD( "95009188.bin", 0x000000, 0x100000, CRC(a2dceadd) SHA1(af1696bf32f37005c6a01bb209f38b90daab4e29) ) \
+ ROM_LOAD( "95009189.bin", 0x100000, 0x100000, CRC(02b0d336) SHA1(7713212ebf59fa2464110b0238a870e81d43be05) ) \
#define sc_dndsi_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008838.bin", 0x0000, 0x100000, CRC(34e9d2eb) SHA1(140f9ccf287e24e3917b1a6bb8d8118bf20f232c) ) \
- ROM_LOAD( "95008839.bin", 0x0000, 0x100000, CRC(4475bb6b) SHA1(864575f9b35495bfe0d8f7563e2d4b5e35b6a396) ) \
+ ROM_LOAD( "95008838.bin", 0x000000, 0x100000, CRC(34e9d2eb) SHA1(140f9ccf287e24e3917b1a6bb8d8118bf20f232c) ) \
+ ROM_LOAD( "95008839.bin", 0x100000, 0x100000, CRC(4475bb6b) SHA1(864575f9b35495bfe0d8f7563e2d4b5e35b6a396) ) \
#define sc_dndrt_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009141.bin", 0x0000, 0x100000, CRC(e53f8ba3) SHA1(10eea3246352bf65e1ca7b4cd6e1a873d6a2f7fe) ) \
- ROM_LOAD( "95009142.bin", 0x0000, 0x100000, CRC(54b47cbd) SHA1(71e8f49b0d031fcc8c5450279dc26d39b90af678) ) \
+ ROM_LOAD( "95009141.bin", 0x000000, 0x100000, CRC(e53f8ba3) SHA1(10eea3246352bf65e1ca7b4cd6e1a873d6a2f7fe) ) \
+ ROM_LOAD( "95009142.bin", 0x100000, 0x100000, CRC(54b47cbd) SHA1(71e8f49b0d031fcc8c5450279dc26d39b90af678) ) \
#define sc_dndpd_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009172.bin", 0x0000, 0x100000, CRC(f124785f) SHA1(2291dca731bb6037d655dc8bbdfa7f35f6a4d4d1) ) \
- ROM_LOAD( "95009173.bin", 0x0000, 0x100000, CRC(aae9318c) SHA1(4b53bec7284950fbca4650117e727ab9a01b5509) ) \
+ ROM_LOAD( "95009172.bin", 0x000000, 0x100000, CRC(f124785f) SHA1(2291dca731bb6037d655dc8bbdfa7f35f6a4d4d1) ) \
+ ROM_LOAD( "95009173.bin", 0x100000, 0x100000, CRC(aae9318c) SHA1(4b53bec7284950fbca4650117e727ab9a01b5509) ) \
#define sc_dndpc_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
#define sc_dndtb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009186.bin", 0x0000, 0x100000, CRC(1da5489b) SHA1(b282e523b52e34a625502ec99ca42f059e701448) ) \
- ROM_LOAD( "95009187.bin", 0x0000, 0x100000, CRC(2c3ea82c) SHA1(50ade918503e224288407abf60b3d53e5334aadb) ) \
+ ROM_LOAD( "95009186.bin", 0x000000, 0x100000, CRC(1da5489b) SHA1(b282e523b52e34a625502ec99ca42f059e701448) ) \
+ ROM_LOAD( "95009187.bin", 0x100000, 0x100000, CRC(2c3ea82c) SHA1(50ade918503e224288407abf60b3d53e5334aadb) ) \
#define sc_dndhf_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008705.bin", 0x0000, 0x100000, CRC(09e02843) SHA1(a6ac658c857eca2aca0bacda423dd012434e93bc) ) \
- ROM_LOAD( "95008706.bin", 0x0000, 0x100000, CRC(805e7eb8) SHA1(107c6ba26e37d8f2eec81b62c3edf3efb7e44ca2) ) \
+ ROM_LOAD( "95008705.bin", 0x000000, 0x100000, CRC(09e02843) SHA1(a6ac658c857eca2aca0bacda423dd012434e93bc) ) \
+ ROM_LOAD( "95008706.bin", 0x100000, 0x100000, CRC(805e7eb8) SHA1(107c6ba26e37d8f2eec81b62c3edf3efb7e44ca2) ) \
#define sc_dndys_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008779.bin", 0x0000, 0x100000, CRC(cf04d115) SHA1(3255b58cd4fba7d231ca35c00d1cb70da1f6cfbd) ) \
- ROM_LOAD( "95008780.bin", 0x0000, 0x100000, CRC(ec270dbe) SHA1(f649ffd4530feed491dc050f40aa0205f4bfdd89) ) \
+ ROM_LOAD( "95008779.bin", 0x000000, 0x100000, CRC(cf04d115) SHA1(3255b58cd4fba7d231ca35c00d1cb70da1f6cfbd) ) \
+ ROM_LOAD( "95008780.bin", 0x100000, 0x100000, CRC(ec270dbe) SHA1(f649ffd4530feed491dc050f40aa0205f4bfdd89) ) \
#define sc_dndww_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -767,83 +789,87 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_dndtr_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008832.bin", 0x0000, 0x100000, CRC(1d2aa204) SHA1(52ad7a6ea369198b48d593de508f317ed11e84de) ) \
- ROM_LOAD( "95008833.bin", 0x0000, 0x100000, CRC(92f462f6) SHA1(c0782639d4cd2653a3d14e1b422c2d6117dac029) ) \
+ ROM_LOAD( "95008832.bin", 0x000000, 0x100000, CRC(1d2aa204) SHA1(52ad7a6ea369198b48d593de508f317ed11e84de) ) \
+ ROM_LOAD( "95008833.bin", 0x100000, 0x100000, CRC(92f462f6) SHA1(c0782639d4cd2653a3d14e1b422c2d6117dac029) ) \
#define sc_dndwb_others \
- ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008651.bin", 0x0000, 0x100000, CRC(c3738d54) SHA1(bf3c62e196a2cea144868729f136000a7b924c3d) ) /* wiyb */ \
- ROM_LOAD( "95008652.bin", 0x0000, 0x100000, CRC(ba8f5b62) SHA1(2683623e8b90d5e9586295d720aa1d985b416117) ) \
- ROM_LOAD( "95008715.bin", 0x0000, 0x100000, CRC(1796b604) SHA1(9045f9424e6447d696a6fdd7f5bdcbfda4b57c90) ) /* wiyb */ \
- ROM_LOAD( "95008766.bin", 0x0000, 0x100000, CRC(62accb81) SHA1(ed0456cefed2fbf9a1cfd911f871262e892a4ce8) ) /* wiyb */ \
- ROM_LOAD( "95008767.bin", 0x0000, 0x100000, CRC(0aa49d8a) SHA1(a2baffc495656f0b5426b720cac298a78774b7fa) ) /* super slam?? */ \
+ ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) /* PR1962 */ \
+ ROM_LOAD( "95008651.bin", 0x000000, 0x100000, CRC(c3738d54) SHA1(bf3c62e196a2cea144868729f136000a7b924c3d) ) /* wiyb */ \
+ ROM_LOAD( "95008652.bin", 0x100000, 0x100000, CRC(ba8f5b62) SHA1(2683623e8b90d5e9586295d720aa1d985b416117) ) \
+ ROM_REGION( 0x400000, "others1", ROMREGION_ERASE00 ) /* PR3071 */ \
+ ROM_LOAD( "95008715.bin", 0x000000, 0x100000, CRC(1796b604) SHA1(9045f9424e6447d696a6fdd7f5bdcbfda4b57c90) ) /* wiyb */ \
+ ROM_REGION( 0x400000, "others2", ROMREGION_ERASE00 ) /* PR3071 (alt checksum, extra sound??) */ \
+ ROM_LOAD( "95008766.bin", 0x000000, 0x100000, CRC(62accb81) SHA1(ed0456cefed2fbf9a1cfd911f871262e892a4ce8) ) /* wiyb */ \
+ ROM_REGION( 0x400000, "others3", ROMREGION_ERASE00 ) /* PR3084 (wrong game?) */ \
+ROM_LOAD( "95008767.bin", 0x000000, 0x100000, CRC(0aa49d8a) SHA1(a2baffc495656f0b5426b720cac298a78774b7fa) ) /* super slam?? */ \
#define sc_dndpg_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008822.bin", 0x0000, 0x100000, CRC(16411f05) SHA1(11f2d17b6647b9d9e713e38bab6604e4feb51432) ) \
- ROM_LOAD( "95008823.bin", 0x0000, 0x100000, CRC(4f7bab89) SHA1(bbb203cff3212571c313e8f22f9083980baf2566) ) \
+ ROM_LOAD( "95008822.bin", 0x000000, 0x100000, CRC(16411f05) SHA1(11f2d17b6647b9d9e713e38bab6604e4feb51432) ) \
+ ROM_LOAD( "95008823.bin", 0x100000, 0x100000, CRC(4f7bab89) SHA1(bbb203cff3212571c313e8f22f9083980baf2566) ) \
#define sc_dndtp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008673.bin", 0x0000, 0x100000, CRC(4b8d1e0b) SHA1(8cba9632abb2800f8e9a45d1bf0abbc9abe8cb8c) ) \
- ROM_LOAD( "95008674.bin", 0x0000, 0x100000, CRC(66236e20) SHA1(222fefdeddb22eb290302528a8f937468ccd5698) ) \
+ ROM_LOAD( "95008673.bin", 0x000000, 0x100000, CRC(4b8d1e0b) SHA1(8cba9632abb2800f8e9a45d1bf0abbc9abe8cb8c) ) \
+ ROM_LOAD( "95008674.bin", 0x100000, 0x100000, CRC(66236e20) SHA1(222fefdeddb22eb290302528a8f937468ccd5698) ) \
#define sc_dndbe_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008624.bin", 0x0000, 0x100000, CRC(bf9620ea) SHA1(63f5a209da3d0117fcb579364a53b23d2b02cfe5) ) \
- ROM_LOAD( "95008625.bin", 0x0000, 0x100000, CRC(2e1a1db0) SHA1(41ebad0615d0ad3fea6f2c00e2bb170d5e417e4a) ) \
+ ROM_LOAD( "95008624.bin", 0x000000, 0x100000, CRC(bf9620ea) SHA1(63f5a209da3d0117fcb579364a53b23d2b02cfe5) ) \
+ ROM_LOAD( "95008625.bin", 0x100000, 0x100000, CRC(2e1a1db0) SHA1(41ebad0615d0ad3fea6f2c00e2bb170d5e417e4a) ) \
#define sc_dndbc_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009100.bin", 0x0000, 0x100000, CRC(b06110c0) SHA1(84289721a8c71124cc4df79fc90d0ded8d43fd07) ) \
- ROM_LOAD( "95009101.bin", 0x0000, 0x100000, CRC(53b38d0a) SHA1(1da40cbee8a18713864e3a578ac49c2108585e44) ) \
+ ROM_LOAD( "95009100.bin", 0x000000, 0x100000, CRC(b06110c0) SHA1(84289721a8c71124cc4df79fc90d0ded8d43fd07) ) \
+ ROM_LOAD( "95009101.bin", 0x100000, 0x100000, CRC(53b38d0a) SHA1(1da40cbee8a18713864e3a578ac49c2108585e44) ) \
#define sc_dndlp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008792.bin", 0x0000, 0x100000, CRC(2e7e1a5a) SHA1(000cb48c67b7f23d00318d37206c2df426c79281) ) \
- ROM_LOAD( "95008793.bin", 0x0000, 0x100000, CRC(4b91b638) SHA1(b97cb1d22f91a791fc4d47bbae8965882898a317) ) \
+ ROM_LOAD( "95008792.bin", 0x000000, 0x100000, CRC(2e7e1a5a) SHA1(000cb48c67b7f23d00318d37206c2df426c79281) ) \
+ ROM_LOAD( "95008793.bin", 0x100000, 0x100000, CRC(4b91b638) SHA1(b97cb1d22f91a791fc4d47bbae8965882898a317) ) \
#define sc_dndra_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008752.bin", 0x0000, 0x100000, CRC(82bfd510) SHA1(857f294d46d64275b15c56187bbbc19e2aa0f5bc) ) \
- ROM_LOAD( "95008753.bin", 0x0000, 0x100000, CRC(ee0b5da9) SHA1(f6cb6037f525df504c1ba8106f19990ecf8d1bd2) ) \
+ ROM_LOAD( "95008752.bin", 0x000000, 0x100000, CRC(82bfd510) SHA1(857f294d46d64275b15c56187bbbc19e2aa0f5bc) ) \
+ ROM_LOAD( "95008753.bin", 0x100000, 0x100000, CRC(ee0b5da9) SHA1(f6cb6037f525df504c1ba8106f19990ecf8d1bd2) ) \
#define sc_dndbd_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008790.bin", 0x0000, 0x100000, CRC(3c56a8b6) SHA1(8c06aa725233f4feb7c2e703f203cf9b0c6669a1) ) \
- ROM_LOAD( "95008791.bin", 0x0000, 0x100000, CRC(7378a4a8) SHA1(af9dd1fcbd8b77fab4afc85a325c0eb011f35e3a) ) \
+ ROM_LOAD( "95008790.bin", 0x000000, 0x100000, CRC(3c56a8b6) SHA1(8c06aa725233f4feb7c2e703f203cf9b0c6669a1) ) \
+ ROM_LOAD( "95008791.bin", 0x100000, 0x100000, CRC(7378a4a8) SHA1(af9dd1fcbd8b77fab4afc85a325c0eb011f35e3a) ) \
#define sc_dndbr_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008723.bin", 0x0000, 0x100000, CRC(6e1d9bd5) SHA1(92b2fd0b75a195af6ddfbdee3316f8af4bc4eb1a) ) \
- ROM_LOAD( "95008724.bin", 0x0000, 0x100000, CRC(309c1bf1) SHA1(82811b503a06e30a915eebdbdbcd63b567f241c1) ) \
+ ROM_LOAD( "95008723.bin", 0x000000, 0x100000, CRC(6e1d9bd5) SHA1(92b2fd0b75a195af6ddfbdee3316f8af4bc4eb1a) ) \
+ ROM_LOAD( "95008724.bin", 0x100000, 0x100000, CRC(309c1bf1) SHA1(82811b503a06e30a915eebdbdbcd63b567f241c1) ) \
#define sc_dndcc_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008746.bin", 0x0000, 0x100000, CRC(ef3c39b9) SHA1(21b9788080de68acd436608d7d46fd9663d1589b) ) /* crazy chair */ \
- ROM_LOAD( "95008747.bin", 0x0000, 0x100000, CRC(9f9b638f) SHA1(5eae49f8a9571f8fade9acf0fc80ea3d70cc9e18) ) \
+ ROM_LOAD( "95008746.bin", 0x000000, 0x100000, CRC(ef3c39b9) SHA1(21b9788080de68acd436608d7d46fd9663d1589b) ) /* crazy chair */ \
+ ROM_LOAD( "95008747.bin", 0x100000, 0x100000, CRC(9f9b638f) SHA1(5eae49f8a9571f8fade9acf0fc80ea3d70cc9e18) ) \
\
- ROM_LOAD( "95008840.bin", 0x0000, 0x100000, CRC(2aa17d67) SHA1(43bdee1b3d0a0bf28f672620867fa3dc95727fbc) ) /* crazy chair */ \
- ROM_LOAD( "95008841.bin", 0x0000, 0x100000, CRC(594a9cd7) SHA1(667fa3106327ce4ff23877f2d48d3e3e360848d0) ) \
+ ROM_REGION( 0x400000, "others", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "95008840.bin", 0x000000, 0x100000, CRC(2aa17d67) SHA1(43bdee1b3d0a0bf28f672620867fa3dc95727fbc) ) /* crazy chair */ \
+ ROM_LOAD( "95008841.bin", 0x100000, 0x100000, CRC(594a9cd7) SHA1(667fa3106327ce4ff23877f2d48d3e3e360848d0) ) \
\
- ROM_LOAD( "95009131.bin", 0x0000, 0x100000, CRC(59a9e50a) SHA1(15d79b177a1e926cd5aee0f969f5ef8b30fac203) ) /* crazy chair */ \
- ROM_LOAD( "95009132.bin", 0x0000, 0x100000, CRC(5e8a7ca6) SHA1(419ecc6ac15004bdd83bcd5b3e00d9dcd0d24936) ) \
+ ROM_LOAD( "95009131.bin", 0x000000, 0x100000, CRC(59a9e50a) SHA1(15d79b177a1e926cd5aee0f969f5ef8b30fac203) ) /* crazy chair */ \
+ ROM_LOAD( "95009132.bin", 0x100000, 0x100000, CRC(5e8a7ca6) SHA1(419ecc6ac15004bdd83bcd5b3e00d9dcd0d24936) ) \
#define sc_dnddw_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008754.bin", 0x0000, 0x100000, CRC(d2c3e3e5) SHA1(3d21c812456618471a331d596760ea8746afc036) ) \
- ROM_LOAD( "95008755.bin", 0x0000, 0x100000, CRC(e6906180) SHA1(81215fd3dfe315123d5b028047a93e30baa52b5d) ) \
+ ROM_LOAD( "95008754.bin", 0x000000, 0x100000, CRC(d2c3e3e5) SHA1(3d21c812456618471a331d596760ea8746afc036) ) \
+ ROM_LOAD( "95008755.bin", 0x100000, 0x100000, CRC(e6906180) SHA1(81215fd3dfe315123d5b028047a93e30baa52b5d) ) \
#define sc_dnddf_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008738.bin", 0x0000, 0x100000, CRC(2a06f488) SHA1(666bd9c8091edda4b003fa586e5ae270831c119f) ) \
- ROM_LOAD( "95008739.bin", 0x0000, 0x100000, CRC(33d677b0) SHA1(5283d23671e340e3fda4eb4c6795d1d56b073206) ) \
+ ROM_LOAD( "95008738.bin", 0x000000, 0x100000, CRC(2a06f488) SHA1(666bd9c8091edda4b003fa586e5ae270831c119f) ) \
+ ROM_LOAD( "95008739.bin", 0x100000, 0x100000, CRC(33d677b0) SHA1(5283d23671e340e3fda4eb4c6795d1d56b073206) ) \
#define sc_disco_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004220", 0x0000, 0x080000, CRC(530be6ac) SHA1(eede25d9d8a429dace91c1dc37ce4da7152b1836) ) \
- ROM_LOAD( "95004221", 0x0000, 0x080000, CRC(0b2020c9) SHA1(75c7af9312ea1b84df66a640fac903aedac5a0eb) ) \
+ ROM_LOAD( "95004220", 0x000000, 0x080000, CRC(530be6ac) SHA1(eede25d9d8a429dace91c1dc37ce4da7152b1836) ) \
+ ROM_LOAD( "95004221", 0x080000, 0x080000, CRC(0b2020c9) SHA1(75c7af9312ea1b84df66a640fac903aedac5a0eb) ) \
#define sc_dbldm_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -874,18 +900,18 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_evol_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "evolsnd.p1", 0x0000, 0x100000, CRC(13e18cc3) SHA1(114301af1abf86cdd9c2f01b316d257bb1ca086d) ) \
- ROM_LOAD( "evolsnd.p2", 0x0000, 0x08399a, CRC(345f3f11) SHA1(dd4d4f0f32650304cc6010b8f059c23dd5535919) ) \
+ ROM_LOAD( "evolsnd.p1", 0x000000, 0x100000, CRC(13e18cc3) SHA1(114301af1abf86cdd9c2f01b316d257bb1ca086d) ) \
+ ROM_LOAD( "evolsnd.p2", 0x100000, 0x08399a, CRC(345f3f11) SHA1(dd4d4f0f32650304cc6010b8f059c23dd5535919) ) \
#define sc_fgbh_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009118.bin", 0x0000, 0x100000, CRC(f6ce47b9) SHA1(bb3917a3eed718e23dc37b1ffe93f2e349990d3c) ) \
- ROM_LOAD( "95009119.bin", 0x0000, 0x100000, CRC(9d96e3fd) SHA1(5d2d3939a2f1f765c2272f7747a0eea7d0cf1bf8) ) \
+ ROM_LOAD( "95009118.bin", 0x000000, 0x100000, CRC(f6ce47b9) SHA1(bb3917a3eed718e23dc37b1ffe93f2e349990d3c) ) \
+ ROM_LOAD( "95009119.bin", 0x100000, 0x100000, CRC(9d96e3fd) SHA1(5d2d3939a2f1f765c2272f7747a0eea7d0cf1bf8) ) \
#define sc_fggp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008824.bin", 0x0000, 0x100000, CRC(58119c7f) SHA1(40f6376b5e1caf0c3231a9b870f584e9b2362676) ) \
- ROM_LOAD( "95008825.bin", 0x0000, 0x100000, CRC(7fdae5e2) SHA1(57bcb01b66bdd7ad68dc601f67bc13229ad604f8) ) \
+ ROM_LOAD( "95008824.bin", 0x000000, 0x100000, CRC(58119c7f) SHA1(40f6376b5e1caf0c3231a9b870f584e9b2362676) ) \
+ ROM_LOAD( "95008825.bin", 0x100000, 0x100000, CRC(7fdae5e2) SHA1(57bcb01b66bdd7ad68dc601f67bc13229ad604f8) ) \
#define sc_fast_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -893,8 +919,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_fnclb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008670.bin", 0x0000, 0x100000, CRC(345c0993) SHA1(9fdc586c415c5f4586b8395d4a8d93d87792d43e) ) \
- ROM_LOAD( "95008671.bin", 0x0000, 0x100000, CRC(11dd3c77) SHA1(f125c510a10819dac3391a582277f99b53c131fa) ) \
+ ROM_LOAD( "95008670.bin", 0x000000, 0x100000, CRC(345c0993) SHA1(9fdc586c415c5f4586b8395d4a8d93d87792d43e) ) \
+ ROM_LOAD( "95008671.bin", 0x100000, 0x100000, CRC(11dd3c77) SHA1(f125c510a10819dac3391a582277f99b53c131fa) ) \
#define sc_fdice_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -925,8 +951,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_fguy_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008813.bin", 0x0000, 0x100000, CRC(e5548d68) SHA1(ac20af71cedd0c6d61d6a28afa8d700c1446e442) ) \
- ROM_LOAD( "95008814.bin", 0x0000, 0x100000, CRC(06f3165c) SHA1(936a8c1d31bca93a5b985e89c48a1faaef602ae0) ) \
+ ROM_LOAD( "95008813.bin", 0x000000, 0x100000, CRC(e5548d68) SHA1(ac20af71cedd0c6d61d6a28afa8d700c1446e442) ) \
+ ROM_LOAD( "95008814.bin", 0x100000, 0x100000, CRC(06f3165c) SHA1(936a8c1d31bca93a5b985e89c48a1faaef602ae0) ) \
#define sc_fmj_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -953,8 +979,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_gldgo_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009166.bin", 0x0000, 0x100000, CRC(06ae879f) SHA1(b4357306f4361bd26532e3db399f105f09fdf5be) ) \
- ROM_LOAD( "95009167.bin", 0x0000, 0x100000, CRC(5e34266d) SHA1(35fa153ccb7fd9001cd23dc0c9e683291615e9e0) ) \
+ ROM_LOAD( "95009166.bin", 0x000000, 0x100000, CRC(06ae879f) SHA1(b4357306f4361bd26532e3db399f105f09fdf5be) ) \
+ ROM_LOAD( "95009167.bin", 0x100000, 0x100000, CRC(5e34266d) SHA1(35fa153ccb7fd9001cd23dc0c9e683291615e9e0) ) \
#define sc_gldsp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -962,8 +988,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_gmclb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009112.bin", 0x0000, 0x100000, CRC(80be159b) SHA1(2e6d19f97613152fcb17d027efc886815102fd56) ) \
- ROM_LOAD( "95009113.bin", 0x0000, 0x100000, CRC(edd3d30e) SHA1(94a56fda349d998b8571c271041d11cc79afaec2) ) \
+ ROM_LOAD( "95009112.bin", 0x000000, 0x100000, CRC(80be159b) SHA1(2e6d19f97613152fcb17d027efc886815102fd56) ) \
+ ROM_LOAD( "95009113.bin", 0x100000, 0x100000, CRC(edd3d30e) SHA1(94a56fda349d998b8571c271041d11cc79afaec2) ) \
#define sc_gamcs_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -995,8 +1021,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc4goldo_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004165.bin", 0x0000, 0x080000, CRC(c52f4218) SHA1(2648f3ef35d68bdd14a0a773151157dae0271067) ) \
- ROM_LOAD( "95004166.bin", 0x0000, 0x080000, CRC(a77f1337) SHA1(e292c87fa8e643846cc0ddd7b9a585429b7efdd6) ) \
+ ROM_LOAD( "95004165.bin", 0x000000, 0x080000, CRC(c52f4218) SHA1(2648f3ef35d68bdd14a0a773151157dae0271067) ) \
+ ROM_LOAD( "95004166.bin", 0x080000, 0x080000, CRC(a77f1337) SHA1(e292c87fa8e643846cc0ddd7b9a585429b7efdd6) ) \
#define sc_gocas_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1026,10 +1052,10 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_gd_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008187.bin", 0x0000, 0x100000, CRC(1fbbc7cc) SHA1(6e19b582a3654bbbcf65b8f42bd556029f43e8cb) ) \
- ROM_LOAD( "95008188.bin", 0x0000, 0x100000, CRC(a74b23a7) SHA1(f7948edfb5524eaf80039c07ca7a9f76883f5a6f) ) \
- ROM_LOAD( "95009061.bin", 0x0000, 0x100000, CRC(c4cad720) SHA1(ce67af8d9e0b2f4f79d38b7a01dfc5ff7323e162) ) \
- ROM_LOAD( "95009062.bin", 0x0000, 0x100000, CRC(509761d3) SHA1(6a133cc33bac6a1696de98a4961572a86cefc1c8) ) \
+ ROM_LOAD( "95008187.bin", 0x000000, 0x100000, CRC(1fbbc7cc) SHA1(6e19b582a3654bbbcf65b8f42bd556029f43e8cb) ) \
+ ROM_LOAD( "95008188.bin", 0x100000, 0x100000, CRC(a74b23a7) SHA1(f7948edfb5524eaf80039c07ca7a9f76883f5a6f) ) \
+ ROM_LOAD( "95009061.bin", 0x000000, 0x100000, CRC(c4cad720) SHA1(ce67af8d9e0b2f4f79d38b7a01dfc5ff7323e162) ) \
+ ROM_LOAD( "95009062.bin", 0x100000, 0x100000, CRC(509761d3) SHA1(6a133cc33bac6a1696de98a4961572a86cefc1c8) ) \
#define sc_gdmz_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1048,18 +1074,18 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_gunp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008744.bin", 0x0000, 0x100000, CRC(be8313a2) SHA1(247ec0b2140d261bf5e7ab21cedb4ad2fd708ca7) ) \
- ROM_LOAD( "95008745.bin", 0x0000, 0x100000, CRC(355caf88) SHA1(82951c00efd27533ccbc78b46cd5b69be5c3e26d) ) \
+ ROM_LOAD( "95008744.bin", 0x000000, 0x100000, CRC(be8313a2) SHA1(247ec0b2140d261bf5e7ab21cedb4ad2fd708ca7) ) \
+ ROM_LOAD( "95008745.bin", 0x100000, 0x100000, CRC(355caf88) SHA1(82951c00efd27533ccbc78b46cd5b69be5c3e26d) ) \
#define sc_gag_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004132.1_1", 0x0000, 0x080000, CRC(17320a32) SHA1(113ab1db5227fe17053969dd98f94f0b3b7555f5) ) \
- ROM_LOAD( "95004132.1_2", 0x0000, 0x080000, CRC(03593875) SHA1(a5f6730664b1bbfdb7b98b41379e9b240f43c53c) ) \
+ ROM_LOAD( "95004132.1_1", 0x000000, 0x080000, CRC(17320a32) SHA1(113ab1db5227fe17053969dd98f94f0b3b7555f5) ) \
+ ROM_LOAD( "95004132.1_2", 0x080000, 0x080000, CRC(03593875) SHA1(a5f6730664b1bbfdb7b98b41379e9b240f43c53c) ) \
#define sc_goud_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004288.sn1", 0x0000, 0x080000, CRC(ae6d0680) SHA1(467d0127e2a63ca031ebf2816dde99273b513913) ) \
- ROM_LOAD( "95004289.sn2", 0x0000, 0x080000, CRC(9c88f3c8) SHA1(1152077f59cc28726f1428a9fdaf2c92ddef6c73) ) \
+ ROM_LOAD( "95004288.sn1", 0x000000, 0x080000, CRC(ae6d0680) SHA1(467d0127e2a63ca031ebf2816dde99273b513913) ) \
+ ROM_LOAD( "95004289.sn2", 0x080000, 0x080000, CRC(9c88f3c8) SHA1(1152077f59cc28726f1428a9fdaf2c92ddef6c73) ) \
#define sc_hirol_others \
ROM_REGION( 0x5000, "pics", 0 ) \
@@ -1071,18 +1097,18 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_hulk_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008367.bin", 0x0000, 0x100000, CRC(37eea219) SHA1(e612b2c0bca83d742b35fbaf487b6805cfac024d) ) \
- ROM_LOAD( "95008368.bin", 0x0000, 0x100000, CRC(06549054) SHA1(923a320f9689361802dc82db467b294f7bc85147) ) \
+ ROM_LOAD( "95008367.bin", 0x000000, 0x100000, CRC(37eea219) SHA1(e612b2c0bca83d742b35fbaf487b6805cfac024d) ) \
+ ROM_LOAD( "95008368.bin", 0x100000, 0x100000, CRC(06549054) SHA1(923a320f9689361802dc82db467b294f7bc85147) ) \
#define sc_hapnt_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008290.bin", 0x0000, 0x100000, CRC(427fc43d) SHA1(c63154c7f2bb3e7ec78e31268a8040d0eb131f2f) ) \
- ROM_LOAD( "95008312.bin", 0x0000, 0x100000, CRC(cf33e14d) SHA1(33382be257a145784d9de7050b5c90f725241de4) ) \
+ ROM_LOAD( "95008290.bin", 0x000000, 0x100000, CRC(427fc43d) SHA1(c63154c7f2bb3e7ec78e31268a8040d0eb131f2f) ) \
+ ROM_LOAD( "95008312.bin", 0x100000, 0x100000, CRC(cf33e14d) SHA1(33382be257a145784d9de7050b5c90f725241de4) ) \
#define sc_hfcl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004272.bin", 0x0000, 0x080000, CRC(843cea31) SHA1(1d3a524600c8a0b7d6e3a32cad71f7f53c8190a1) ) \
- ROM_LOAD( "95004273.bin", 0x0000, 0x080000, CRC(c0782f35) SHA1(d763f7f8377c97129485522b201413e35c9c5760) ) \
+ ROM_LOAD( "95004272.bin", 0x000000, 0x080000, CRC(843cea31) SHA1(1d3a524600c8a0b7d6e3a32cad71f7f53c8190a1) ) \
+ ROM_LOAD( "95004273.bin", 0x080000, 0x080000, CRC(c0782f35) SHA1(d763f7f8377c97129485522b201413e35c9c5760) ) \
#define sc_hill_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1110,13 +1136,13 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_hotwd_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008309.bin", 0x0000, 0x100000, CRC(8cd75778) SHA1(5d75c10b32477faa24c73ad03de75914385787f6) ) \
- ROM_LOAD( "95008334.bin", 0x0000, 0x100000, CRC(0c334241) SHA1(3e5bde03330a5684a2a40fa94b33345039cd3755) ) \
+ ROM_LOAD( "95008309.bin", 0x000000, 0x100000, CRC(8cd75778) SHA1(5d75c10b32477faa24c73ad03de75914385787f6) ) \
+ ROM_LOAD( "95008334.bin", 0x100000, 0x100000, CRC(0c334241) SHA1(3e5bde03330a5684a2a40fa94b33345039cd3755) ) \
#define sc_celeb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008440.bin", 0x0000, 0x100000, CRC(72a98e5d) SHA1(5f3e441d6c3fa2373284cee704630028cf7800ad) ) \
- ROM_LOAD( "95008441.bin", 0x0000, 0x100000, CRC(d7382975) SHA1(f5a4d92f243ec745f91d008d623b43dfa024635c) ) \
+ ROM_LOAD( "95008440.bin", 0x000000, 0x100000, CRC(72a98e5d) SHA1(5f3e441d6c3fa2373284cee704630028cf7800ad) ) \
+ ROM_LOAD( "95008441.bin", 0x100000, 0x100000, CRC(d7382975) SHA1(f5a4d92f243ec745f91d008d623b43dfa024635c) ) \
#define sc_iab_others \
ROM_REGION( 0x5000, "pics", 0 ) \
@@ -1144,8 +1170,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_ijob_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008764.bin", 0x0000, 0x100000, CRC(995c0c63) SHA1(7459e92ad80d4eb61008a011bf5ae3a1d5cb8f9d) ) \
- ROM_LOAD( "95008765.bin", 0x0000, 0x0fb251, CRC(3c2feab2) SHA1(797ef43d2166c0522f6da5dd17bf4443f08891a5) ) \
+ ROM_LOAD( "95008764.bin", 0x000000, 0x100000, CRC(995c0c63) SHA1(7459e92ad80d4eb61008a011bf5ae3a1d5cb8f9d) ) \
+ ROM_LOAD( "95008765.bin", 0x100000, 0x0fb251, CRC(3c2feab2) SHA1(797ef43d2166c0522f6da5dd17bf4443f08891a5) ) \
#define sc_jjok_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1171,28 +1197,28 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_lotrf_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008251.bin", 0x0000, 0x100000, CRC(2af25e80) SHA1(fb606e434ac99eee6e114d6639f28f0fa1e7ffb3) ) \
- ROM_LOAD( "95008252.bin", 0x0000, 0x100000, CRC(fbca1cfb) SHA1(27c610af14b10d1d72774186fd3afc12d5db925e) ) \
+ ROM_LOAD( "95008251.bin", 0x000000, 0x100000, CRC(2af25e80) SHA1(fb606e434ac99eee6e114d6639f28f0fa1e7ffb3) ) \
+ ROM_LOAD( "95008252.bin", 0x100000, 0x100000, CRC(fbca1cfb) SHA1(27c610af14b10d1d72774186fd3afc12d5db925e) ) \
#define sc_lotr2_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008320.bin", 0x0000, 0x100000, CRC(8ba801e3) SHA1(4d6a009c2f4f4478276f1227af6315b4be90fc87) ) \
- ROM_LOAD( "95008321.bin", 0x0000, 0x100000, CRC(42482ddc) SHA1(304961f267b85bc599dd64c97c14f34b2913dd59) ) \
+ ROM_LOAD( "95008320.bin", 0x000000, 0x100000, CRC(8ba801e3) SHA1(4d6a009c2f4f4478276f1227af6315b4be90fc87) ) \
+ ROM_LOAD( "95008321.bin", 0x100000, 0x100000, CRC(42482ddc) SHA1(304961f267b85bc599dd64c97c14f34b2913dd59) ) \
#define sc_ltr2c_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008342.bin", 0x0000, 0x100000, CRC(44f48bf6) SHA1(2b36fb9ca6eb9cb35cf67e580d736c711d96ea25) ) \
- ROM_LOAD( "95008343.bin", 0x0000, 0x100000, CRC(f35a7927) SHA1(f2a93c8ff4699c7e6572a7a43b6b2bc50683594c) ) \
+ ROM_LOAD( "95008342.bin", 0x000000, 0x100000, CRC(44f48bf6) SHA1(2b36fb9ca6eb9cb35cf67e580d736c711d96ea25) ) \
+ ROM_LOAD( "95008343.bin", 0x100000, 0x100000, CRC(f35a7927) SHA1(f2a93c8ff4699c7e6572a7a43b6b2bc50683594c) ) \
#define sc_lotrt_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008517.bin", 0x0000, 0x100000, CRC(8092eaeb) SHA1(fea226ea7fb97226c79132aa67b89078f67cd920) ) \
- ROM_LOAD( "95008518.bin", 0x0000, 0x100000, CRC(6ac28d4e) SHA1(cdf50c856324130156115259efbfb7553480c749) ) \
+ ROM_LOAD( "95008517.bin", 0x000000, 0x100000, CRC(8092eaeb) SHA1(fea226ea7fb97226c79132aa67b89078f67cd920) ) \
+ ROM_LOAD( "95008518.bin", 0x100000, 0x100000, CRC(6ac28d4e) SHA1(cdf50c856324130156115259efbfb7553480c749) ) \
#define sc_lotrr_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008413.bin", 0x0000, 0x100000, CRC(66d6fd58) SHA1(dff5cc3f09fb4082fde4d5d4a9ecfe00cbce7242) ) \
- ROM_LOAD( "95008414.bin", 0x0000, 0x100000, CRC(8ec846ac) SHA1(3f66cbe5bc7190406425488beccb3e1d15356b1a) ) \
+ ROM_LOAD( "95008413.bin", 0x000000, 0x100000, CRC(66d6fd58) SHA1(dff5cc3f09fb4082fde4d5d4a9ecfe00cbce7242) ) \
+ ROM_LOAD( "95008414.bin", 0x100000, 0x100000, CRC(8ec846ac) SHA1(3f66cbe5bc7190406425488beccb3e1d15356b1a) ) \
#define sc_luck7_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1208,13 +1234,13 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_mobob_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008842.bin", 0x0000, 0x100000, CRC(3205f4c9) SHA1(a8b92e1558911e02281b1c38c64c5e04836794b0) ) \
- ROM_LOAD( "95008843.bin", 0x0000, 0x100000, CRC(95057e16) SHA1(6c26451dd336f908ce0fcea0c56176b589111868) ) \
+ ROM_LOAD( "95008842.bin", 0x000000, 0x100000, CRC(3205f4c9) SHA1(a8b92e1558911e02281b1c38c64c5e04836794b0) ) \
+ ROM_LOAD( "95008843.bin", 0x100000, 0x100000, CRC(95057e16) SHA1(6c26451dd336f908ce0fcea0c56176b589111868) ) \
#define sc_momil_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009110.bin", 0x0000, 0x100000, CRC(8ec67890) SHA1(ba7f8cd4315a4ca8d2adeedc40c50e9e9a9b38f6) ) \
- ROM_LOAD( "95009111.bin", 0x0000, 0x100000, CRC(de68000c) SHA1(be69779ccb213a95698c2eafafe1f4a339febc4f) ) \
+ ROM_LOAD( "95009110.bin", 0x000000, 0x100000, CRC(8ec67890) SHA1(ba7f8cd4315a4ca8d2adeedc40c50e9e9a9b38f6) ) \
+ ROM_LOAD( "95009111.bin", 0x100000, 0x100000, CRC(de68000c) SHA1(be69779ccb213a95698c2eafafe1f4a339febc4f) ) \
#define sc_mombc_others \
ROM_REGION( 0x5000, "pics", 0 ) \
@@ -1257,14 +1283,14 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_mogta_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009039.bin", 0x0000, 0x100000, CRC(0756b1b7) SHA1(82a8f9bf4c70a492ae2d4f478ecc73cccf9aecdd) ) \
- ROM_LOAD( "95009040.bin", 0x0000, 0x100000, CRC(9a928ef4) SHA1(5b19f70d067540aef3dc140115c12601d2b8176e) ) \
+ ROM_LOAD( "95009039.bin", 0x000000, 0x100000, CRC(0756b1b7) SHA1(82a8f9bf4c70a492ae2d4f478ecc73cccf9aecdd) ) \
+ ROM_LOAD( "95009040.bin", 0x100000, 0x100000, CRC(9a928ef4) SHA1(5b19f70d067540aef3dc140115c12601d2b8176e) ) \
#define sc_monsp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004291.snd", 0x0000, 0x080000, CRC(0ea304f7) SHA1(3d524e108cd12e83956fec3997316a92a9e0898d) ) \
- ROM_LOAD( "95008183.bin", 0x0000, 0x080000, CRC(ab29f841) SHA1(908603184c3f7ead278dabd224d60e5362cdafbe) ) \
- ROM_LOAD( "95008184.bin", 0x0000, 0x080000, CRC(45ef95ea) SHA1(1e1126b542621e723eaf6e38918162fe701247e0) ) \
+ ROM_LOAD( "95004291.snd", 0x000000, 0x080000, CRC(0ea304f7) SHA1(3d524e108cd12e83956fec3997316a92a9e0898d) ) \
+ ROM_LOAD( "95008183.bin", 0x000000, 0x080000, CRC(ab29f841) SHA1(908603184c3f7ead278dabd224d60e5362cdafbe) ) \
+ ROM_LOAD( "95008184.bin", 0x080000, 0x080000, CRC(45ef95ea) SHA1(1e1126b542621e723eaf6e38918162fe701247e0) ) \
#define sc_monop_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1292,15 +1318,16 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_mhp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008707.bin", 0x0000, 0x100000, CRC(88ffdb28) SHA1(724a2fe6703d4e5aab7d3989be9d3ae4dc8ab057) ) \
- ROM_LOAD( "95008708.bin", 0x0000, 0x100000, CRC(fa8aa99e) SHA1(bd4dd726b0af371d9b8589de461316990c3232dc) ) \
+ ROM_LOAD( "95008707.bin", 0x000000, 0x100000, CRC(88ffdb28) SHA1(724a2fe6703d4e5aab7d3989be9d3ae4dc8ab057) ) \
+ ROM_LOAD( "95008708.bin", 0x100000, 0x100000, CRC(fa8aa99e) SHA1(bd4dd726b0af371d9b8589de461316990c3232dc) ) \
#define sc_mmb_others \
- ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008612.bin", 0x0000, 0x100000, CRC(5f76152c) SHA1(c9f0ac000ec0b11ac3ba5eb5ff7e3dc2084f6744) ) \
- ROM_LOAD( "95008613.bin", 0x0000, 0x100000, CRC(df266121) SHA1(ece6b5a42ec3d18d97cffe3e6c98c6e6cd34682b) ) \
- ROM_LOAD( "95009168.bin", 0x0000, 0x100000, CRC(1ad311a5) SHA1(bd7728423cd855ea58fe21097d3d3db5a7e08339) ) \
- ROM_LOAD( "95009169.bin", 0x0000, 0x100000, CRC(23a8705f) SHA1(a36e71706cee64b56958fe4aefba8b85d2369e38) ) \
+ ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) /* PR1911 MPOLY MONEYBAGS SOUNDS11 */ \
+ ROM_LOAD( "95008612.bin", 0x000000, 0x100000, CRC(5f76152c) SHA1(c9f0ac000ec0b11ac3ba5eb5ff7e3dc2084f6744) ) \
+ ROM_LOAD( "95008613.bin", 0x100000, 0x100000, CRC(df266121) SHA1(ece6b5a42ec3d18d97cffe3e6c98c6e6cd34682b) ) \
+ ROM_REGION( 0x400000, "others", ROMREGION_ERASE00 ) /* PR3413 MPOLY MB SOUNDS11 */ \
+ ROM_LOAD( "95009168.bin", 0x000000, 0x100000, CRC(1ad311a5) SHA1(bd7728423cd855ea58fe21097d3d3db5a7e08339) ) \
+ ROM_LOAD( "95009169.bin", 0x100000, 0x100000, CRC(23a8705f) SHA1(a36e71706cee64b56958fe4aefba8b85d2369e38) ) \
#define sc_mrh_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1314,7 +1341,6 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_mr2r_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
ROM_LOAD( "95008893.bin", 0x0000, 0x0f2fe8, CRC(a7f64802) SHA1(8a667ebf29feaffb2676ebd770b570c1015f3c2a) ) \
-/* ROM_LOAD( "95008983.bin", 0x0000, 0x0f2fe8, CRC(a7f64802) SHA1(8a667ebf29feaffb2676ebd770b570c1015f3c2a) ) */ \
ROM_REGION( 0x5000, "pics", 0 ) \
ROM_LOAD( "95890480.bin", 0x0000, 0x5000, CRC(3618777f) SHA1(97ab5be3bcdbe1c94e638c4dceac69bbfe359a0e) ) \
ROM_LOAD( "95890481.bin", 0x0000, 0x5000, CRC(438e334b) SHA1(69b132ea3cbe31d31fd6fa6b915ddc2f4e66f068) ) \
@@ -1335,17 +1361,17 @@ INPUT_PORTS_EXTERN( sc4 );
ROM_LOAD( "95890713.bin", 0x0000, 0x5000, CRC(f0bb40b7) SHA1(33c19dab3086cdeae4f503fbf3f3cc5f0dad98c4) ) \
ROM_LOAD( "95890714.bin", 0x0000, 0x5000, CRC(33e16227) SHA1(87efc1a046ef6af0b72cc76a6ee393a4d1ddbce3) ) \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008550.bin", 0x0000, 0x100000, CRC(db6343bf) SHA1(e4d702020af67aa5be0560027706c1cbf34296fa) ) \
- ROM_LOAD( "95008551.bin", 0x0000, 0x100000, CRC(2d89a52a) SHA1(244101df7f6beae545f9b823750f908f532ac1e4) ) \
- ROM_LOAD( "95008850.bin", 0x0000, 0x0af41f, CRC(8ca16e09) SHA1(9b494ad6946c2c7bbfad6591e62fa699fd53b6dc) ) \
- ROM_LOAD( "95008869.bin", 0x0000, 0x0b9d9d, CRC(f3ef3bbb) SHA1(92f9835e96c4fc444a451e97b2b8a7b66e5794b7) ) \
+ ROM_LOAD( "95008550.bin", 0x000000, 0x100000, CRC(db6343bf) SHA1(e4d702020af67aa5be0560027706c1cbf34296fa) ) \
+ ROM_LOAD( "95008551.bin", 0x100000, 0x100000, CRC(2d89a52a) SHA1(244101df7f6beae545f9b823750f908f532ac1e4) ) \
+ ROM_LOAD( "95008850.bin", 0x000000, 0x0af41f, CRC(8ca16e09) SHA1(9b494ad6946c2c7bbfad6591e62fa699fd53b6dc) ) \
+ ROM_LOAD( "95008869.bin", 0x000000, 0x0b9d9d, CRC(f3ef3bbb) SHA1(92f9835e96c4fc444a451e97b2b8a7b66e5794b7) ) \
#define sc_nmare_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008664.bin", 0x0000, 0x100000, CRC(54d245d7) SHA1(503db10681bc1d6cf1cffb2a6f818c5d912a7f56) ) \
- ROM_LOAD( "95008665.bin", 0x0000, 0x100000, CRC(79a00527) SHA1(b8207d3a81e97b2233fea1df883a4128388570e4) ) \
- ROM_LOAD( "95008703.bin", 0x0000, 0x100000, CRC(5c095089) SHA1(ffba71efccf4679c2b29ab620e67f3fa45ff19d4) ) \
- ROM_LOAD( "95008704.bin", 0x0000, 0x100000, CRC(61e5d6f4) SHA1(6d221e0b3dce7507253bb7f07d99d03025d813cb) ) \
+ ROM_LOAD( "95008664.bin", 0x000000, 0x100000, CRC(54d245d7) SHA1(503db10681bc1d6cf1cffb2a6f818c5d912a7f56) ) \
+ ROM_LOAD( "95008665.bin", 0x100000, 0x100000, CRC(79a00527) SHA1(b8207d3a81e97b2233fea1df883a4128388570e4) ) \
+ ROM_LOAD( "95008703.bin", 0x000000, 0x100000, CRC(5c095089) SHA1(ffba71efccf4679c2b29ab620e67f3fa45ff19d4) ) \
+ ROM_LOAD( "95008704.bin", 0x100000, 0x100000, CRC(61e5d6f4) SHA1(6d221e0b3dce7507253bb7f07d99d03025d813cb) ) \
#define sc_nunsb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1356,13 +1382,13 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_rainb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009122.bin", 0x0000, 0x100000, CRC(7197027f) SHA1(216e43135c00452556ad5e7647891f14641840ed) ) \
- ROM_LOAD( "95009123.bin", 0x0000, 0x100000, CRC(3454f17d) SHA1(fc45d2653a0f260702a94663939b0d0176fc1c87) ) \
+ ROM_LOAD( "95009122.bin", 0x000000, 0x100000, CRC(7197027f) SHA1(216e43135c00452556ad5e7647891f14641840ed) ) \
+ ROM_LOAD( "95009123.bin", 0x100000, 0x100000, CRC(3454f17d) SHA1(fc45d2653a0f260702a94663939b0d0176fc1c87) ) \
#define sc_parot_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008736.bin", 0x0000, 0x100000, CRC(148a7600) SHA1(d57f4a667151e78715d617b3d1e963d29d83b538) ) \
- ROM_LOAD( "95008737.bin", 0x0000, 0x100000, CRC(4e61167f) SHA1(6faa7a395bd2d9067b88a9c9c365198ea26ebb39) ) \
+ ROM_LOAD( "95008736.bin", 0x000000, 0x100000, CRC(148a7600) SHA1(d57f4a667151e78715d617b3d1e963d29d83b538) ) \
+ ROM_LOAD( "95008737.bin", 0x100000, 0x100000, CRC(4e61167f) SHA1(6faa7a395bd2d9067b88a9c9c365198ea26ebb39) ) \
#define sc_pilep_others \
ROM_REGION( 0x5000, "pics", 0 ) \
@@ -1382,8 +1408,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_cpen1_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009057.bin", 0x0000, 0x100000, CRC(7b83611b) SHA1(6163ab8e848f019190af446710b31e3516386c57) ) \
- ROM_LOAD( "95009058.bin", 0x0000, 0x100000, CRC(43858a26) SHA1(fdb831e6a2ba161e72883100c22e2e9eee335fe6) ) \
+ ROM_LOAD( "95009057.bin", 0x000000, 0x100000, CRC(7b83611b) SHA1(6163ab8e848f019190af446710b31e3516386c57) ) \
+ ROM_LOAD( "95009058.bin", 0x100000, 0x100000, CRC(43858a26) SHA1(fdb831e6a2ba161e72883100c22e2e9eee335fe6) ) \
#define sc_potp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1431,8 +1457,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_popey_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008798.bin", 0x0000, 0x100000, CRC(916cb144) SHA1(c75fa7a27be4e8dbd85fa074f6228877b5c86fc9) ) \
- ROM_LOAD( "95008799.bin", 0x0000, 0x100000, CRC(2f4c8eb6) SHA1(ca02b32705352735c4217aa20e9bc82eac8c3645) ) \
+ ROM_LOAD( "95008798.bin", 0x000000, 0x100000, CRC(916cb144) SHA1(c75fa7a27be4e8dbd85fa074f6228877b5c86fc9) ) \
+ ROM_LOAD( "95008799.bin", 0x100000, 0x100000, CRC(2f4c8eb6) SHA1(ca02b32705352735c4217aa20e9bc82eac8c3645) ) \
#define sc_pwrpl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1458,13 +1484,13 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_rhog_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008783.bin", 0x0000, 0x100000, CRC(50d2c89b) SHA1(f3e592f009765118009f97bd7d0951b72ffc2898) ) \
- ROM_LOAD( "95008784.bin", 0x0000, 0x100000, CRC(88185c65) SHA1(b3a6d06aca91dc04d9efbc1e4ff89b37bcf87a57) ) \
+ ROM_LOAD( "95008783.bin", 0x000000, 0x100000, CRC(50d2c89b) SHA1(f3e592f009765118009f97bd7d0951b72ffc2898) ) \
+ ROM_LOAD( "95008784.bin", 0x100000, 0x100000, CRC(88185c65) SHA1(b3a6d06aca91dc04d9efbc1e4ff89b37bcf87a57) ) \
#define sc_rhclb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008802.bin", 0x0000, 0x100000, CRC(36647f4a) SHA1(ffa0cdf4f2b8ccc9afda67160a50e603b2a41ae6) ) \
- ROM_LOAD( "95008803.bin", 0x0000, 0x100000, CRC(2d26ff8a) SHA1(b9c797dfb2b06b3558e9a02d197e046244f4f2fc) ) \
+ ROM_LOAD( "95008802.bin", 0x000000, 0x100000, CRC(36647f4a) SHA1(ffa0cdf4f2b8ccc9afda67160a50e603b2a41ae6) ) \
+ ROM_LOAD( "95008803.bin", 0x100000, 0x100000, CRC(2d26ff8a) SHA1(b9c797dfb2b06b3558e9a02d197e046244f4f2fc) ) \
#define sc_rdrag_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1554,8 +1580,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_sharp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008561.bin", 0x0000, 0x100000, CRC(98d21491) SHA1(e06156dbe83fc26968da1a2432d697d68e6b88ee) ) \
- ROM_LOAD( "95008562.bin", 0x0000, 0x100000, CRC(fb3a25e7) SHA1(e8a60e4e870438fd4a330453ce1bdf8ad836fbc0) ) \
+ ROM_LOAD( "95008561.bin", 0x000000, 0x100000, CRC(98d21491) SHA1(e06156dbe83fc26968da1a2432d697d68e6b88ee) ) \
+ ROM_LOAD( "95008562.bin", 0x100000, 0x100000, CRC(fb3a25e7) SHA1(e8a60e4e870438fd4a330453ce1bdf8ad836fbc0) ) \
#define sc_sfts_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1569,8 +1595,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_witwi_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008756.bin", 0x0000, 0x100000, CRC(bde21cff) SHA1(fc8945e66416447d690515161acf9260620d7768) ) \
- ROM_LOAD( "95008757.bin", 0x0000, 0x100000, CRC(7c33cf90) SHA1(f3ad90c5623d97e3bf013927945383115042b84b) ) \
+ ROM_LOAD( "95008756.bin", 0x000000, 0x100000, CRC(bde21cff) SHA1(fc8945e66416447d690515161acf9260620d7768) ) \
+ ROM_LOAD( "95008757.bin", 0x100000, 0x100000, CRC(7c33cf90) SHA1(f3ad90c5623d97e3bf013927945383115042b84b) ) \
#define sc_spnrn_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1594,13 +1620,15 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_showt_others \
- ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008656.bin", 0x0000, 0x100000, CRC(632a4cbb) SHA1(455e6242f5c5c1a0d84aadfdda33873e8e7b2418) ) \
- ROM_LOAD( "95008657.bin", 0x0000, 0x100000, CRC(aa68db50) SHA1(52ee314549fac989dd9ee494144ee3bbb99ee283) ) \
- ROM_LOAD( "95008734.bin", 0x0000, 0x100000, CRC(8b469657) SHA1(514b3f4cbbafb3cee618b9ce0bae572f1a4fcf7b) ) \
- ROM_LOAD( "95008735.bin", 0x0000, 0x100000, CRC(fa614cc1) SHA1(e5ecce4936a8db267b08b938ab5bc7500cf98f99) ) \
- ROM_LOAD( "95008777.bin", 0x0000, 0x100000, CRC(1ff19229) SHA1(6db08982ee923ef4568caf76e05088574f99fc36) ) \
- ROM_LOAD( "95008778.bin", 0x0000, 0x100000, CRC(2f2f3ee1) SHA1(cade826fec6c07a1fffa548c96404da83db14dd7) ) \
+ ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) /* PR3013 SHOWTIME SOUNDS11 */ \
+ ROM_LOAD( "95008734.bin", 0x000000, 0x100000, CRC(8b469657) SHA1(514b3f4cbbafb3cee618b9ce0bae572f1a4fcf7b) ) \
+ ROM_LOAD( "95008735.bin", 0x100000, 0x100000, CRC(fa614cc1) SHA1(e5ecce4936a8db267b08b938ab5bc7500cf98f99) ) \
+ ROM_REGION( 0x400000, "others1", ROMREGION_ERASE00 ) /* PR1940 ADSNT SHOWTIME SOUNDS11 */ \
+ ROM_LOAD( "95008656.bin", 0x000000, 0x100000, CRC(632a4cbb) SHA1(455e6242f5c5c1a0d84aadfdda33873e8e7b2418) ) \
+ ROM_LOAD( "95008657.bin", 0x100000, 0x100000, CRC(aa68db50) SHA1(52ee314549fac989dd9ee494144ee3bbb99ee283) ) \
+ ROM_REGION( 0x400000, "others2", ROMREGION_ERASE00 ) /* PR3243 SHOWTIME SOUNDS11 */ \
+ ROM_LOAD( "95008777.bin", 0x000000, 0x100000, CRC(1ff19229) SHA1(6db08982ee923ef4568caf76e05088574f99fc36) ) \
+ ROM_LOAD( "95008778.bin", 0x100000, 0x100000, CRC(2f2f3ee1) SHA1(cade826fec6c07a1fffa548c96404da83db14dd7) ) \
#define sc_slad_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1683,8 +1711,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_tempt_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008654.bin", 0x0000, 0x100000, CRC(9963724c) SHA1(90d22b11934e95fd2bfda026dcde51dcd74f93cc) ) \
- ROM_LOAD( "95008655.bin", 0x0000, 0x100000, CRC(12735319) SHA1(166fbcc5828fd26ace63eed127427cbd0c81570d) ) \
+ ROM_LOAD( "95008654.bin", 0x009900, 0x100000, CRC(9963724c) SHA1(90d22b11934e95fd2bfda026dcde51dcd74f93cc) ) \
+ ROM_LOAD( "95008655.bin", 0x100000, 0x100000, CRC(12735319) SHA1(166fbcc5828fd26ace63eed127427cbd0c81570d) ) \
#define sc_tpsht_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1694,8 +1722,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_typ_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008662.bin", 0x0000, 0x100000, CRC(51959c94) SHA1(8a4b68460da4223071e33158747ae0ea18b83a52) ) \
- ROM_LOAD( "95008663.bin", 0x0000, 0x100000, CRC(839687b2) SHA1(a9fd3645eb903cb52b348dd8313f0d953d5a5ec0) ) \
+ ROM_LOAD( "95008662.bin", 0x000000, 0x100000, CRC(51959c94) SHA1(8a4b68460da4223071e33158747ae0ea18b83a52) ) \
+ ROM_LOAD( "95008663.bin", 0x100000, 0x100000, CRC(839687b2) SHA1(a9fd3645eb903cb52b348dd8313f0d953d5a5ec0) ) \
#define sc5pompa_others \
@@ -1714,8 +1742,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_viz_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008859.bin", 0x0000, 0x100000, CRC(86e4b4a1) SHA1(21344c9e5757d8d9ad7f1cd5ce5deb9f93d18fcc) ) \
- ROM_LOAD( "95008860.bin", 0x0000, 0x0ae3ea, CRC(0e49df2c) SHA1(629b90f91e8840560ea6eaf0e94d6b2fb6aba71c) ) \
+ ROM_LOAD( "95008859.bin", 0x000000, 0x100000, CRC(86e4b4a1) SHA1(21344c9e5757d8d9ad7f1cd5ce5deb9f93d18fcc) ) \
+ ROM_LOAD( "95008860.bin", 0x100000, 0x0ae3ea, CRC(0e49df2c) SHA1(629b90f91e8840560ea6eaf0e94d6b2fb6aba71c) ) \
ROM_REGION( 0x5000, "pics", 0 ) \
ROM_LOAD( "95890742.bin", 0x0000, 0x5000, CRC(247f75ec) SHA1(92d63123aabf6932b283bbbd581c1bbe526318ce) ) \
ROM_LOAD( "95890743.bin", 0x0000, 0x5000, CRC(51e931d8) SHA1(91ceb930eac97e090de5471c8a789ddd31c65a10) ) \
@@ -1723,10 +1751,10 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_wacky_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008834.bin", 0x0000, 0x100000, CRC(def73602) SHA1(681aafa4c035fdbb0f03e92fa56d31c13e27ca59) ) \
- ROM_LOAD( "95008835.bin", 0x0000, 0x100000, CRC(9a10ff4f) SHA1(903e43d9db726dc5ee92abaf23b61454611064b1) ) \
- ROM_LOAD( "95009128.bin", 0x0000, 0x100000, CRC(d9883f0c) SHA1(3cfeb470248a9d5d6b653175c16f88c54d51fceb) ) \
- ROM_LOAD( "95009129.bin", 0x0000, 0x100000, CRC(969f418a) SHA1(ca65dfa23f9e6a516bc65baa8ddd80faa530af1f) ) \
+ ROM_LOAD( "95008834.bin", 0x000000, 0x100000, CRC(def73602) SHA1(681aafa4c035fdbb0f03e92fa56d31c13e27ca59) ) \
+ ROM_LOAD( "95008835.bin", 0x100000, 0x100000, CRC(9a10ff4f) SHA1(903e43d9db726dc5ee92abaf23b61454611064b1) ) \
+ ROM_LOAD( "95009128.bin", 0x000000, 0x100000, CRC(d9883f0c) SHA1(3cfeb470248a9d5d6b653175c16f88c54d51fceb) ) \
+ ROM_LOAD( "95009129.bin", 0x100000, 0x100000, CRC(969f418a) SHA1(ca65dfa23f9e6a516bc65baa8ddd80faa530af1f) ) \
#define sc_wotw_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1746,26 +1774,26 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_wok_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008811.bin", 0x0000, 0x100000, CRC(0aae3aea) SHA1(a13ca57b4ff95022392b6bf06065593c3271637a) ) \
- ROM_LOAD( "95008812.bin", 0x0000, 0x100000, CRC(4a48eabd) SHA1(30dc0cccc636c1472b7577353c1db8e88242bba4) ) \
+ ROM_LOAD( "95008811.bin", 0x000000, 0x100000, CRC(0aae3aea) SHA1(a13ca57b4ff95022392b6bf06065593c3271637a) ) \
+ ROM_LOAD( "95008812.bin", 0x100000, 0x100000, CRC(4a48eabd) SHA1(30dc0cccc636c1472b7577353c1db8e88242bba4) ) \
#define sc_srrcl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
#define sc_pircl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95009200.bin", 0x0000, 0x100000, CRC(45392f4b) SHA1(9a71834e52480f87ab303c22efe15157b8f25b5c) ) \
- ROM_LOAD( "95009201.bin", 0x0000, 0x100000, CRC(3aece97c) SHA1(fc469870fef892da0a4aa49077c7746315933d40) ) \
+ ROM_LOAD( "95009200.bin", 0x000000, 0x100000, CRC(45392f4b) SHA1(9a71834e52480f87ab303c22efe15157b8f25b5c) ) \
+ ROM_LOAD( "95009201.bin", 0x100000, 0x100000, CRC(3aece97c) SHA1(fc469870fef892da0a4aa49077c7746315933d40) ) \
#define sc_mrrcl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
#define sc_gball_pthers \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008161.bin", 0x0000, 0x080000, CRC(ecd13fd9) SHA1(51d11b9133d4e840ce9afd7cf716520ea0fc0343) ) \
- ROM_LOAD( "95008162.bin", 0x0000, 0x080000, CRC(b4b4a5c5) SHA1(d0748decfaee7da52d2f6a4bc0877be4243ed6fb) ) \
- ROM_LOAD( "95008465.bin", 0x0000, 0x100000, CRC(5d1fa2c9) SHA1(c12de2b89f0bcb8f1b35630fffd205fd9d5b9777) ) \
- ROM_LOAD( "95008466.bin", 0x0000, 0x100000, CRC(418068ab) SHA1(342939e9bcc1d213bc2f52666cc3765442e18635) ) \
+ ROM_LOAD( "95008161.bin", 0x000000, 0x080000, CRC(ecd13fd9) SHA1(51d11b9133d4e840ce9afd7cf716520ea0fc0343) ) \
+ ROM_LOAD( "95008162.bin", 0x080000, 0x080000, CRC(b4b4a5c5) SHA1(d0748decfaee7da52d2f6a4bc0877be4243ed6fb) ) \
+ ROM_LOAD( "95008465.bin", 0x000000, 0x100000, CRC(5d1fa2c9) SHA1(c12de2b89f0bcb8f1b35630fffd205fd9d5b9777) ) \
+ ROM_LOAD( "95008466.bin", 0x100000, 0x100000, CRC(418068ab) SHA1(342939e9bcc1d213bc2f52666cc3765442e18635) ) \
#define sc_gfev_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1803,20 +1831,18 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_leg_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008093.bin", 0x0000, 0x100000, CRC(86e27465) SHA1(1d27358fe795286676a8031382387ff4225f7118) ) \
- ROM_LOAD( "95008094.bin", 0x0000, 0x100000, CRC(08909b00) SHA1(3e5b3da186036d7fe67ed2739de6fba79d4a978a) ) \
+ ROM_LOAD( "95008093.bin", 0x000000, 0x100000, CRC(86e27465) SHA1(1d27358fe795286676a8031382387ff4225f7118) ) \
+ ROM_LOAD( "95008094.bin", 0x100000, 0x100000, CRC(08909b00) SHA1(3e5b3da186036d7fe67ed2739de6fba79d4a978a) ) \
#define sc_legcb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008197.bin", 0x0000, 0x100000, CRC(234ff677) SHA1(571c2fa2b5a24d07e90e43061d9947f64874e482) ) \
- ROM_LOAD( "95008198.bin", 0x0000, 0x100000, CRC(4b03df47) SHA1(13c24cc90a618ebc7c150ab3694a1b787fb049d6) ) \
+ ROM_LOAD( "95008197.bin", 0x000000, 0x100000, CRC(234ff677) SHA1(571c2fa2b5a24d07e90e43061d9947f64874e482) ) \
+ ROM_LOAD( "95008198.bin", 0x100000, 0x100000, CRC(4b03df47) SHA1(13c24cc90a618ebc7c150ab3694a1b787fb049d6) ) \
#define sc_luckb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008161.bin", 0x0000, 0x080000, CRC(ecd13fd9) SHA1(51d11b9133d4e840ce9afd7cf716520ea0fc0343) ) /* golden balls */ \
- ROM_LOAD( "95008162.bin", 0x0000, 0x080000, CRC(b4b4a5c5) SHA1(d0748decfaee7da52d2f6a4bc0877be4243ed6fb) ) \
- ROM_LOAD( "95008167.bin", 0x0000, 0x080000, CRC(13aaf063) SHA1(70ab005c867c0c8f63b16722f4fc3ba0c935a96f) ) /* lucky balls */ \
- ROM_LOAD( "95008168.bin", 0x0000, 0x080000, CRC(71aebb68) SHA1(479b3915552be029d459d3f05ccf668c21f05554) ) \
+ ROM_LOAD( "95008167.bin", 0x000000, 0x080000, CRC(13aaf063) SHA1(70ab005c867c0c8f63b16722f4fc3ba0c935a96f) ) /* lucky balls */ \
+ ROM_LOAD( "95008168.bin", 0x080000, 0x080000, CRC(71aebb68) SHA1(479b3915552be029d459d3f05ccf668c21f05554) ) \
#define sc_mww_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1832,8 +1858,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_manic_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008684.bin", 0x0000, 0x100000, CRC(52b7d26e) SHA1(ba6629dbad8d00c132c0ddf6a8a41ddc99231c75) ) \
- ROM_LOAD( "95008685.bin", 0x0000, 0x100000, CRC(dc9717c0) SHA1(27234bb7c7e7bd1f395972ce2958d55e84005313) ) \
+ ROM_LOAD( "95008684.bin", 0x000000, 0x100000, CRC(52b7d26e) SHA1(ba6629dbad8d00c132c0ddf6a8a41ddc99231c75) ) \
+ ROM_LOAD( "95008685.bin", 0x100000, 0x100000, CRC(dc9717c0) SHA1(27234bb7c7e7bd1f395972ce2958d55e84005313) ) \
#define sc_pacmn_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1867,13 +1893,13 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_polen_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "polesnd1.bin", 0x0000, 0x080000, CRC(09f720e3) SHA1(1a5c581b16b974e949679c3d71696984755f3c7c) ) \
- ROM_LOAD( "polesnd2.bin", 0x0000, 0x080000, CRC(80c2702b) SHA1(6c7b1d535d8f1eeb25a1a84ccf9e97b3e453af6d) ) \
+ ROM_LOAD( "polesnd1.bin", 0x000000, 0x080000, CRC(09f720e3) SHA1(1a5c581b16b974e949679c3d71696984755f3c7c) ) \
+ ROM_LOAD( "polesnd2.bin", 0x080000, 0x080000, CRC(80c2702b) SHA1(6c7b1d535d8f1eeb25a1a84ccf9e97b3e453af6d) ) \
#define sc_pog_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008750.bin", 0x0000, 0x100000, CRC(25a94ab7) SHA1(9ee3a1acb2734a5663d925fa050c15d154f79678) ) \
- ROM_LOAD( "95008751.bin", 0x0000, 0x100000, CRC(53c97577) SHA1(5ec3868967073b4ed429fed943fbcd568a85b4f3) ) \
+ ROM_LOAD( "95008750.bin", 0x000000, 0x100000, CRC(25a94ab7) SHA1(9ee3a1acb2734a5663d925fa050c15d154f79678) ) \
+ ROM_LOAD( "95008751.bin", 0x100000, 0x100000, CRC(53c97577) SHA1(5ec3868967073b4ed429fed943fbcd568a85b4f3) ) \
#define sc_rt_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1893,15 +1919,15 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_starp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "star prize snd1.bin", 0x0000, 0x080000, CRC(9f7f7442) SHA1(576e5e92455455ad18ae596a9dae500a17912faa) ) \
- ROM_LOAD( "star prize snd2.bin", 0x0000, 0x080000, CRC(0ae992b5) SHA1(b3a8ba472aa3a6785678a554a7fe789f9f3dc6c0) ) \
+ ROM_LOAD( "star prize snd1.bin", 0x000000, 0x080000, CRC(9f7f7442) SHA1(576e5e92455455ad18ae596a9dae500a17912faa) ) \
+ ROM_LOAD( "star prize snd2.bin", 0x080000, 0x080000, CRC(0ae992b5) SHA1(b3a8ba472aa3a6785678a554a7fe789f9f3dc6c0) ) \
ROM_REGION( 0x400000, "altymz", ROMREGION_ERASE00 ) \
ROM_LOAD( "sprizesn.1", 0x0000, 0x080000, CRC(5a9a9903) SHA1(ac79fedeaa1b37661d0ec28bf6c5b141c7fcc328) ) \
#define sc_tetri_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008097_1.bin", 0x0000, 0x100000, CRC(01a251eb) SHA1(0cb63736065b97956f02710867ac11609b1f282c) ) \
- ROM_LOAD( "95008098_2.bin", 0x0000, 0x100000, CRC(5ebcfd20) SHA1(be415d965732b3fde47684dacdfe93711182faf4) ) \
+ ROM_LOAD( "95008097_1.bin", 0x000000, 0x100000, CRC(01a251eb) SHA1(0cb63736065b97956f02710867ac11609b1f282c) ) \
+ ROM_LOAD( "95008098_2.bin", 0x100000, 0x100000, CRC(5ebcfd20) SHA1(be415d965732b3fde47684dacdfe93711182faf4) ) \
#define sc_trail_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1913,25 +1939,28 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_vivam_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004246.bin", 0x0000, 0x080000, CRC(4e5a0143) SHA1(a9e668aceb21671a78b584fd55c21d5501ea1f8a) ) \
- ROM_LOAD( "95004247.bin", 0x0000, 0x080000, CRC(4a35b6a1) SHA1(24e4ed93149b7f6caf785ecaa5a4685585a36f5b) ) \
- ROM_LOAD( "95008719.bin", 0x0000, 0x100000, CRC(f99eafef) SHA1(7a7dedf5bf8292b94ac6da78478441335bfcb66f) ) \
- ROM_LOAD( "95008720.bin", 0x0000, 0x100000, CRC(6419033f) SHA1(3d222696dd9f4f201596fd444a031690cc8c1b0d) ) \
- ROM_LOAD( "viva_mex.sn1", 0x0000, 0x080000, CRC(ed357575) SHA1(610047e83062fd4a6d23d9b9281a3a6c04d63f7d) ) \
- ROM_LOAD( "viva_mex.sn2", 0x0000, 0x080000, CRC(aab9421d) SHA1(db2941e013597be3fe05a2b002aebdfb0f7a2b41) ) \
+ /* pr6927 - casino */ \
+ ROM_LOAD( "95004246.bin", 0x000000, 0x080000, CRC(4e5a0143) SHA1(a9e668aceb21671a78b584fd55c21d5501ea1f8a) ) \
+ ROM_LOAD( "95004247.bin", 0x080000, 0x080000, CRC(4a35b6a1) SHA1(24e4ed93149b7f6caf785ecaa5a4685585a36f5b) ) \
+ /* pr3010 */ \
+ ROM_LOAD( "95008719.bin", 0x000000, 0x100000, CRC(f99eafef) SHA1(7a7dedf5bf8292b94ac6da78478441335bfcb66f) ) \
+ ROM_LOAD( "95008720.bin", 0x100000, 0x100000, CRC(6419033f) SHA1(3d222696dd9f4f201596fd444a031690cc8c1b0d) ) \
+ /* pr6907 */ \
+ ROM_LOAD( "viva_mex.sn1", 0x000000, 0x080000, CRC(ed357575) SHA1(610047e83062fd4a6d23d9b9281a3a6c04d63f7d) ) \
+ ROM_LOAD( "viva_mex.sn2", 0x080000, 0x080000, CRC(aab9421d) SHA1(db2941e013597be3fe05a2b002aebdfb0f7a2b41) ) \
#define sc_vmclb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008101.bin", 0x0000, 0x100000, CRC(751a433f) SHA1(36aaf1b2425c58bd49671fc6bd61addc33a082f1) ) \
- ROM_LOAD( "95008102.bin", 0x0000, 0x100000, CRC(155ec8ab) SHA1(5f38fb49facab94d041f315178a3d2adf9d95853) ) \
+ ROM_LOAD( "95008101.bin", 0x000000, 0x100000, CRC(751a433f) SHA1(36aaf1b2425c58bd49671fc6bd61addc33a082f1) ) \
+ ROM_LOAD( "95008102.bin", 0x100000, 0x100000, CRC(155ec8ab) SHA1(5f38fb49facab94d041f315178a3d2adf9d95853) ) \
#define sc_vmnv_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
#define sc_vrgcl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008143.bin", 0x0000, 0x100000, CRC(8bf35d69) SHA1(0a5017d02ba839f2f21402df99e7684ce559d931) ) \
- ROM_LOAD( "95008144.bin", 0x0000, 0x100000, CRC(1ce7f671) SHA1(ccca34515217e72ef1879a3cbad77c7adea3a665) ) \
+ ROM_LOAD( "95008143.bin", 0x000000, 0x100000, CRC(8bf35d69) SHA1(0a5017d02ba839f2f21402df99e7684ce559d931) ) \
+ ROM_LOAD( "95008144.bin", 0x100000, 0x100000, CRC(1ce7f671) SHA1(ccca34515217e72ef1879a3cbad77c7adea3a665) ) \
#define sc_wldjk_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1943,8 +1972,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_bsp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008725.bin", 0x0000, 0x100000, CRC(e0a46426) SHA1(f6bc41c48ec1c4f113968a6ccc7a7dc81a7674b2) ) \
- ROM_LOAD( "95008726.bin", 0x0000, 0x100000, CRC(f01062bb) SHA1(a75937e85010ff4da01277336ad37bcbb8d0ba9f) ) \
+ ROM_LOAD( "95008725.bin", 0x000000, 0x100000, CRC(e0a46426) SHA1(f6bc41c48ec1c4f113968a6ccc7a7dc81a7674b2) ) \
+ ROM_LOAD( "95008726.bin", 0x100000, 0x100000, CRC(f01062bb) SHA1(a75937e85010ff4da01277336ad37bcbb8d0ba9f) ) \
#define sc_chain_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1956,6 +1985,7 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_abra_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "abra.snd", 0x0000, 0x100000, NO_DUMP ) \
#define sc_bb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1971,16 +2001,17 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_brkfs_others \
ROM_REGION( 0x200000, "ymz", 0 ) \
- ROM_LOAD( "95008013.lo", 0x00001, 0x100000, CRC(286e59da) SHA1(e43901f4ad9fc7f083cbb7ef5cd7e4ad6289833b) ) \
- ROM_LOAD( "95008014.hi", 0x00000, 0x100000, CRC(1b9936ad) SHA1(0c98618d1ca30fa4f9913a5214a5f431e520917c) ) \
+ ROM_LOAD( "95008013.lo", 0x000000, 0x100000, CRC(286e59da) SHA1(e43901f4ad9fc7f083cbb7ef5cd7e4ad6289833b) ) \
+ ROM_LOAD( "95008014.hi", 0x100000, 0x100000, CRC(1b9936ad) SHA1(0c98618d1ca30fa4f9913a5214a5f431e520917c) ) \
#define sc_broll_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "rol sounds", 0x0000, 0x100000, NO_DUMP ) \
#define sc_bulcl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008547.bin", 0x0000, 0x100000, CRC(33d997ba) SHA1(22c28360757bad350907b145e18a8e438d68f2b1) ) \
- ROM_LOAD( "95008548.bin", 0x0000, 0x100000, CRC(896bae80) SHA1(264127b6d22c048a0a54e7a63433c3aed6f053e2) ) \
+ ROM_LOAD( "95008547.bin", 0x000000, 0x100000, CRC(33d997ba) SHA1(22c28360757bad350907b145e18a8e438d68f2b1) ) \
+ ROM_LOAD( "95008548.bin", 0x100000, 0x100000, CRC(896bae80) SHA1(264127b6d22c048a0a54e7a63433c3aed6f053e2) ) \
#define sc_bankb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -1996,13 +2027,16 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_cashn_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004292.sn1", 0x0000, 0x080000, CRC(e7efab30) SHA1(b2587c14e427fdb51cb5c96e5e017c69f5c134e8) ) \
- ROM_LOAD( "95004293.sn2", 0x0000, 0x080000, CRC(89584d87) SHA1(935b6e873342aefd1c39bb474c6b780799a0e049) ) \
+ ROM_LOAD( "95004292.sn1", 0x000000, 0x080000, CRC(e7efab30) SHA1(b2587c14e427fdb51cb5c96e5e017c69f5c134e8) ) \
+ ROM_LOAD( "95004293.sn2", 0x080000, 0x080000, CRC(89584d87) SHA1(935b6e873342aefd1c39bb474c6b780799a0e049) ) \
#define sc_cashm_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008123_1.bin", 0x0000, 0x100000, CRC(9f1fc98b) SHA1(9233ef6a82f8b23066f959957a7561fb33120d46) ) \
- ROM_LOAD( "95008124_2.bin", 0x0000, 0x100000, CRC(4795c128) SHA1(7b55b39f335b81f6a895ed9beb123464e10a48ee) ) \
+ ROM_LOAD( "95008123_1.bin", 0x000000, 0x100000, CRC(9f1fc98b) SHA1(9233ef6a82f8b23066f959957a7561fb33120d46) ) \
+ ROM_LOAD( "95008124_2.bin", 0x100000, 0x100000, CRC(4795c128) SHA1(7b55b39f335b81f6a895ed9beb123464e10a48ee) ) \
+
+#define sc_cashm_german_others \
+ ROM_LOAD( "cash german sounds", 0x000000, 0x100000, NO_DUMP ) \
#define sc_casry_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2011,22 +2045,18 @@ INPUT_PORTS_EXTERN( sc4 );
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
ROM_LOAD( "95008317.bin", 0x0000, 0x100000, CRC(05ef55b5) SHA1(5130b9243647b9724998600b5f2ef2bbe7b5b1e5) ) \
-#define sc_cburn_others \
- ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "97000034.p1", 0x0000, 0x100000, CRC(f06cb0f1) SHA1(856bdd31a35e93e6f52f88f2ac738cc3fab09c11) ) \
- ROM_LOAD( "97000034.p2", 0x0000, 0x100000, CRC(cce5a2a7) SHA1(4884e8abe2dde81f70ddc13a3a68d690fc097dae) ) \
-
#define sc_ccc_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
ROM_LOAD( "95004282.snd", 0x0000, 0x080000, CRC(e17fb009) SHA1(27fa336c8576bd4a2414f4d71857e9113102cb3d) ) \
#define sc_ccogs_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
+ ROM_LOAD( "clevercogssnd", 0x0000, 0x100000, NO_DUMP ) \
#define sc_cclas_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004250.bin", 0x0000, 0x080000, CRC(5250f18b) SHA1(bbdc556df845753f9ce15dd7dfb2347539dfa00f) ) \
- ROM_LOAD( "95004251.bin", 0x0000, 0x080000, CRC(7a0a7876) SHA1(f172c8a1fbe214f201e6bf671c2f0534b6d9d395) ) \
+ ROM_LOAD( "95004250.bin", 0x000000, 0x080000, CRC(5250f18b) SHA1(bbdc556df845753f9ce15dd7dfb2347539dfa00f) ) \
+ ROM_LOAD( "95004251.bin", 0x080000, 0x080000, CRC(7a0a7876) SHA1(f172c8a1fbe214f201e6bf671c2f0534b6d9d395) ) \
#define sc_cjcl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2034,8 +2064,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_ctlcl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008181.bin", 0x0000, 0x100000, CRC(9eb3e51e) SHA1(95e90e9574cba0526e495a8b17150a5081c13df8) ) \
- ROM_LOAD( "95008182.bin", 0x0000, 0x100000, CRC(5d31955a) SHA1(49dbb4f3efc7e03d1763abb3c6db21c81e961735) ) \
+ ROM_LOAD( "95008181.bin", 0x000000, 0x100000, CRC(9eb3e51e) SHA1(95e90e9574cba0526e495a8b17150a5081c13df8) ) \
+ ROM_LOAD( "95008182.bin", 0x100000, 0x100000, CRC(5d31955a) SHA1(49dbb4f3efc7e03d1763abb3c6db21c81e961735) ) \
#define sc_cfcla_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2061,8 +2091,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_crcc_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD16_BYTE( "95004120.lo", 0x000000, 0x080000, CRC(770a9c0f) SHA1(2d06e32b1d07bc9dc51f39f9ba22c9fe8a678ef3) ) \
- ROM_LOAD16_BYTE( "95004121.hi", 0x080000, 0x080000, CRC(239f389c) SHA1(75d6f9f500aab5f114f8b86c4ca1f8dce6ea2ca4) ) \
+ ROM_LOAD( "95004120.lo", 0x000000, 0x080000, CRC(770a9c0f) SHA1(2d06e32b1d07bc9dc51f39f9ba22c9fe8a678ef3) ) \
+ ROM_LOAD( "95004121.hi", 0x080000, 0x080000, CRC(239f389c) SHA1(75d6f9f500aab5f114f8b86c4ca1f8dce6ea2ca4) ) \
\
ROM_REGION( 0x400000, "others", ROMREGION_ERASE00 ) \
ROM_LOAD( "95000611.mtx", 0x0000, 0x007231, CRC(440c355b) SHA1(884eb0fdc5f6c7c4fac4157d1e5f6bddcb70e148) ) /* unzip this */ \
@@ -2110,9 +2140,9 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_easy_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008195.bin", 0x0000, 0x100000, CRC(e032e67a) SHA1(062f48bd2c38b51ffba8cda7860bb37abad40c71) ) \
- ROM_LOAD( "95008196.bin", 0x0000, 0x100000, CRC(4a23e184) SHA1(2d1c1d92c9cdccd95ca4f466a2d7765def7d990b) ) \
- ROM_LOAD( "95008288.bin", 0x0000, 0x100000, CRC(da74e2d3) SHA1(a16b3d6c0590b0ccc7b2488a2f23383a332c332a) ) /* casino */ \
+ ROM_LOAD( "95008195.bin", 0x000000, 0x100000, CRC(e032e67a) SHA1(062f48bd2c38b51ffba8cda7860bb37abad40c71) ) \
+ ROM_LOAD( "95008196.bin", 0x100000, 0x100000, CRC(4a23e184) SHA1(2d1c1d92c9cdccd95ca4f466a2d7765def7d990b) ) \
+ ROM_LOAD( "95008288.bin", 0x000000, 0x100000, CRC(da74e2d3) SHA1(a16b3d6c0590b0ccc7b2488a2f23383a332c332a) ) /* casino */ \
#define sc_fastf_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2128,8 +2158,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_fd7th_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "frankie snd1.bin", 0x0000, 0x080000, CRC(5d74001e) SHA1(f157706c0970af9b396c2973774c828ed1c0d275) ) \
- ROM_LOAD( "frankie snd2.bin", 0x0000, 0x080000, CRC(8863c8e6) SHA1(0e852155cb2d50d8f0b892c055b37e9955fd8da4) ) \
+ ROM_LOAD( "frankie snd1.bin", 0x000000, 0x080000, CRC(5d74001e) SHA1(f157706c0970af9b396c2973774c828ed1c0d275) ) \
+ ROM_LOAD( "frankie snd2.bin", 0x080000, 0x080000, CRC(8863c8e6) SHA1(0e852155cb2d50d8f0b892c055b37e9955fd8da4) ) \
\
ROM_REGION( 0x400000, "altymz", ROMREGION_ERASE00 ) \
ROM_LOAD( "frdesnd1", 0x0000, 0x080000, CRC(deb93ffa) SHA1(5a549b6bde6f92561952584e3184c1985903464f) ) \
@@ -2148,25 +2178,33 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_ffru_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
ROM_LOAD( "ff_snd.bin", 0x0000, 0x0e54bf, CRC(9d1b711d) SHA1(29386915460b8be92fc5f79177efaf05b7f613cd) ) \
- ROM_LOAD( "ff_snd1.bin", 0x0000, 0x080000, CRC(3f0cb386) SHA1(a400177b1e3b986ba5ddfa5f549180b006ced5a2) ) \
- ROM_LOAD( "ff_snd2.bin", 0x0000, 0x080000, CRC(88d7cc1a) SHA1(7cb45ccc41f0c4a842595598f6f30b78e6c42480) ) \
+ ROM_LOAD( "ff_snd1.bin", 0x000000, 0x080000, CRC(3f0cb386) SHA1(a400177b1e3b986ba5ddfa5f549180b006ced5a2) ) \
+ ROM_LOAD( "ff_snd2.bin", 0x080000, 0x080000, CRC(88d7cc1a) SHA1(7cb45ccc41f0c4a842595598f6f30b78e6c42480) ) \
+
+// we seem to be missing fever sounds 11, which is what our sets want?
#define sc_fever_others \
+ ROM_REGION( 0x400000, "others", ROMREGION_ERASE00 ) \
+ /* PR1007 FEVER SOUNDS12 */ \
+ ROM_LOAD( "95008137.bin", 0x000000, 0x100000, CRC(f74f3916) SHA1(659b160db41e46a53149688f8677e73a78f22e63) ) \
+ ROM_LOAD( "95008138.bin", 0x100000, 0x100000, CRC(68563cdd) SHA1(df92dadecf9242bfa147e3134039266e9016faea) ) \
+
+#define sc_fever7157_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004239.sn1", 0x0000, 0x080000, CRC(12c4d8eb) SHA1(a404bce7eb1a1148cba4a4d8326ea36e31e881b4) ) \
- ROM_LOAD( "95004240.sn2", 0x0000, 0x080000, CRC(a990a2c4) SHA1(2630dc0408359f32d05ecfd5bcc81789854e5229) ) \
- ROM_LOAD( "95008137.bin", 0x0000, 0x100000, CRC(f74f3916) SHA1(659b160db41e46a53149688f8677e73a78f22e63) ) \
- ROM_LOAD( "95008138.bin", 0x0000, 0x100000, CRC(68563cdd) SHA1(df92dadecf9242bfa147e3134039266e9016faea) ) \
+ /* 95004239 FEVER PR7157 */ \
+ ROM_LOAD( "95004239.sn1", 0x000000, 0x080000, CRC(12c4d8eb) SHA1(a404bce7eb1a1148cba4a4d8326ea36e31e881b4) ) \
+ ROM_LOAD( "95004240.sn2", 0x080000, 0x080000, CRC(a990a2c4) SHA1(2630dc0408359f32d05ecfd5bcc81789854e5229) ) \
+
#define sc_fevnx_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004318.sn1", 0x0000, 0x080000, CRC(bb5d74bd) SHA1(104dd8b2faedce3382533c755ca05d03ec2bc50a) ) \
- ROM_LOAD( "95004319.sn2", 0x0000, 0x080000, CRC(73dc297e) SHA1(a826e7d0b88b9e01ceab21a2a92f69f15b402acb) ) \
+ ROM_LOAD( "95004318.sn1", 0x000000, 0x080000, CRC(bb5d74bd) SHA1(104dd8b2faedce3382533c755ca05d03ec2bc50a) ) \
+ ROM_LOAD( "95004319.sn2", 0x080000, 0x080000, CRC(73dc297e) SHA1(a826e7d0b88b9e01ceab21a2a92f69f15b402acb) ) \
#define sc_fpitc_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008091.bin", 0x0000, 0x100000, CRC(81a28437) SHA1(99b9e5c04c2ab7e9aba0b9b8a0bacee424a079de) ) \
- ROM_LOAD( "95008092.bin", 0x0000, 0x100000, CRC(0987737f) SHA1(bab6bf1ffd3df5465c87996795b1c25f5e863beb) ) \
+ ROM_LOAD( "95008091.bin", 0x000000, 0x100000, CRC(81a28437) SHA1(99b9e5c04c2ab7e9aba0b9b8a0bacee424a079de) ) \
+ ROM_LOAD( "95008092.bin", 0x100000, 0x100000, CRC(0987737f) SHA1(bab6bf1ffd3df5465c87996795b1c25f5e863beb) ) \
#define sc_fcc_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2178,8 +2216,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_frsu_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004229.bin", 0x0000, 0x080000, CRC(fe94f724) SHA1(6cebd17d277f1fa88982158d5ac9422f6f16bc3b) ) \
- ROM_LOAD( "95004230.bin", 0x0000, 0x080000, CRC(4b0a6a18) SHA1(6df706b4431cc97318df612c9533c34085cd341d) ) \
+ ROM_LOAD( "95004229.bin", 0x000000, 0x080000, CRC(fe94f724) SHA1(6cebd17d277f1fa88982158d5ac9422f6f16bc3b) ) \
+ ROM_LOAD( "95004230.bin", 0x080000, 0x080000, CRC(4b0a6a18) SHA1(6df706b4431cc97318df612c9533c34085cd341d) ) \
#define sc_fullt_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2214,8 +2252,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_hi5_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008107.bin", 0x0000, 0x100000, CRC(f2b5a284) SHA1(c2b427aa59a233eedefff55d3afdc120f486af83) ) \
- ROM_LOAD( "95008108.bin", 0x0000, 0x100000, CRC(c8bd435d) SHA1(cc78030ae92424db3ba572f355d12db7f9291bd7) ) \
+ ROM_LOAD( "95008107.bin", 0x000000, 0x100000, CRC(f2b5a284) SHA1(c2b427aa59a233eedefff55d3afdc120f486af83) ) \
+ ROM_LOAD( "95008108.bin", 0x100000, 0x100000, CRC(c8bd435d) SHA1(cc78030ae92424db3ba572f355d12db7f9291bd7) ) \
#define sc_sprng_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2223,8 +2261,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_hilo_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008177.bin", 0x0000, 0x100000, CRC(4dad5ea3) SHA1(efa226af2bae5bab25deb3507a635412b0f031e8) ) \
- ROM_LOAD( "95008178.bin", 0x0000, 0x100000, CRC(3a59e427) SHA1(7d530426a57dd9651aef51730b0b8a5324f81024) ) \
+ ROM_LOAD( "95008177.bin", 0x000000, 0x100000, CRC(4dad5ea3) SHA1(efa226af2bae5bab25deb3507a635412b0f031e8) ) \
+ ROM_LOAD( "95008178.bin", 0x100000, 0x100000, CRC(3a59e427) SHA1(7d530426a57dd9651aef51730b0b8a5324f81024) ) \
#define sc_hitsh_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2232,8 +2270,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_holyw_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008071.bin", 0x0000, 0x100000, CRC(005c5847) SHA1(9d8a801e70f5b1c07d46a4f6e9fab22adf5a9415) ) \
- ROM_LOAD( "95008072.bin", 0x0000, 0x100000, CRC(78756706) SHA1(56b744ec5cb431b30c13bc748d323ebe14727546) ) \
+ ROM_LOAD( "95008071.bin", 0x000000, 0x100000, CRC(005c5847) SHA1(9d8a801e70f5b1c07d46a4f6e9fab22adf5a9415) ) \
+ ROM_LOAD( "95008072.bin", 0x100000, 0x100000, CRC(78756706) SHA1(56b744ec5cb431b30c13bc748d323ebe14727546) ) \
#define sc_h6cl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2251,14 +2289,15 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_hotpr_others \
ROM_REGION( 0x800000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "hotpropertysnd1.bin", 0x0000, 0x100000, CRC(f06cb0f1) SHA1(856bdd31a35e93e6f52f88f2ac738cc3fab09c11) ) \
- ROM_LOAD( "hotpropertysnd2.bin", 0x0000, 0x100000, CRC(cce5a2a7) SHA1(4884e8abe2dde81f70ddc13a3a68d690fc097dae) ) \
+ ROM_LOAD( "97000034.p1", 0x000000, 0x100000, CRC(f06cb0f1) SHA1(856bdd31a35e93e6f52f88f2ac738cc3fab09c11) ) \
+ ROM_LOAD( "97000034.p2", 0x100000, 0x100000, CRC(cce5a2a7) SHA1(4884e8abe2dde81f70ddc13a3a68d690fc097dae) ) \
+ ROM_REGION( 0x800000, "others", ROMREGION_ERASE00 ) \
/* bad dumps of snd1? */ \
ROM_LOAD( "95008015.lo", 0x00000, 0x800000, CRC(6553f5b9) SHA1(17ab5162f4fd3fa5a56641f0b1cbc31c0fe1a52c) ) \
ROM_LOAD( "95008016.lo", 0x00000, 0x800000, CRC(6553f5b9) SHA1(17ab5162f4fd3fa5a56641f0b1cbc31c0fe1a52c) ) \
- /* more alternates, or are these Monopoly Hot Property? */ \
- ROM_LOAD( "hot_p.sn1", 0x0000, 0x080000, CRC(c918da0e) SHA1(7eebd41c70be65b1455bafd4087246f41a8b3622) ) \
- ROM_LOAD( "hot_p.sn2", 0x0000, 0x080000, CRC(31fa3827) SHA1(aa099bfda63d3627cab2b5f12fe0ec7d8600f90e) ) \
+ /* bad dumps (2nd half of regular roms) */ \
+ /* ROM_LOAD( "hot_p.sn1", 0x0000, 0x080000, CRC(c918da0e) SHA1(7eebd41c70be65b1455bafd4087246f41a8b3622) ) */ \
+ /* ROM_LOAD( "hot_p.sn2", 0x0000, 0x080000, CRC(31fa3827) SHA1(aa099bfda63d3627cab2b5f12fe0ec7d8600f90e) ) */ \
#define sc_ijclb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2281,8 +2320,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_jiggn_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004179", 0x0000, 0x080000, CRC(fd2521e8) SHA1(58027efa8110004fc4d823dc19d4de115a925711) ) \
- ROM_LOAD( "95004180", 0x0000, 0x080000, CRC(7750b004) SHA1(4c6cb7a5c4b69ca1d65b57271798ac17cd06ce61) ) \
+ ROM_LOAD( "95004179", 0x000000, 0x080000, CRC(fd2521e8) SHA1(58027efa8110004fc4d823dc19d4de115a925711) ) \
+ ROM_LOAD( "95004180", 0x080000, 0x080000, CRC(7750b004) SHA1(4c6cb7a5c4b69ca1d65b57271798ac17cd06ce61) ) \
#define sc_jiggr_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2296,8 +2335,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_juicy_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008216.bin", 0x0000, 0x100000, CRC(1fcf52e3) SHA1(0e585678cb928e107343ebc64f77434ac6a62555) ) \
- ROM_LOAD( "95008217.bin", 0x0000, 0x100000, CRC(995f77f6) SHA1(ac964bc58490448cd3b5a1ed0c7636c2354c8c7d) ) \
+ ROM_LOAD( "95008216.bin", 0x000000, 0x100000, CRC(1fcf52e3) SHA1(0e585678cb928e107343ebc64f77434ac6a62555) ) \
+ ROM_LOAD( "95008217.bin", 0x100000, 0x100000, CRC(995f77f6) SHA1(ac964bc58490448cd3b5a1ed0c7636c2354c8c7d) ) \
#define sc_jbuck_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2326,8 +2365,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_lined_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004241.bin", 0x0000, 0x080000, CRC(e524fd19) SHA1(af0bcf9cf75592beb928f78a915875f3e3ecedac) ) \
- ROM_LOAD( "95004242.bin", 0x0000, 0x080000, CRC(6d86611e) SHA1(2ec6a6745446502a77c10c487b75b59be1fc266e) ) \
+ ROM_LOAD( "95004241.bin", 0x000000, 0x080000, CRC(e524fd19) SHA1(af0bcf9cf75592beb928f78a915875f3e3ecedac) ) \
+ ROM_LOAD( "95004242.bin", 0x080000, 0x080000, CRC(6d86611e) SHA1(2ec6a6745446502a77c10c487b75b59be1fc266e) ) \
#define sc_ldcas_others \
@@ -2349,18 +2388,18 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_lir_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008103.bin", 0x0000, 0x100000, CRC(74ec1e6c) SHA1(1636192a63afcb060ee9453d24d7deb3a6776f51) ) \
- ROM_LOAD( "95008104.bin", 0x0000, 0x100000, CRC(b11bd959) SHA1(1739035495a14fedcbc67b724e7595693425d15f) ) \
+ ROM_LOAD( "95008103.bin", 0x000000, 0x100000, CRC(74ec1e6c) SHA1(1636192a63afcb060ee9453d24d7deb3a6776f51) ) \
+ ROM_LOAD( "95008104.bin", 0x100000, 0x100000, CRC(b11bd959) SHA1(1739035495a14fedcbc67b724e7595693425d15f) ) \
#define sc_miljo_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004305.sn1", 0x0000, 0x080000, CRC(1fffefe8) SHA1(e4dd8ee3ac82c598b50fe49afeddf11bcca96581) ) \
- ROM_LOAD( "95004306.sn2", 0x0000, 0x080000, CRC(afc501d4) SHA1(9a28381a7c1c047d6e7bb70736d2c8308c8911a3) ) \
+ ROM_LOAD( "95004305.sn1", 0x000000, 0x080000, CRC(1fffefe8) SHA1(e4dd8ee3ac82c598b50fe49afeddf11bcca96581) ) \
+ ROM_LOAD( "95004306.sn2", 0x080000, 0x080000, CRC(afc501d4) SHA1(9a28381a7c1c047d6e7bb70736d2c8308c8911a3) ) \
#define sc_milja_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004305.sn1", 0x0000, 0x080000, CRC(1fffefe8) SHA1(e4dd8ee3ac82c598b50fe49afeddf11bcca96581) ) \
- ROM_LOAD( "95004306.sn2", 0x0000, 0x080000, CRC(afc501d4) SHA1(9a28381a7c1c047d6e7bb70736d2c8308c8911a3) ) \
+ ROM_LOAD( "95004305.sn1", 0x000000, 0x080000, CRC(1fffefe8) SHA1(e4dd8ee3ac82c598b50fe49afeddf11bcca96581) ) \
+ ROM_LOAD( "95004306.sn2", 0x080000, 0x080000, CRC(afc501d4) SHA1(9a28381a7c1c047d6e7bb70736d2c8308c8911a3) ) \
#define sc_mbags_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2380,13 +2419,13 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_mtb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "mtb_snd1.bin", 0x0000, 0x080000, CRC(4abca575) SHA1(8f0e3fd169cbf0876368dac335bf81ab0601c923) ) \
- ROM_LOAD( "mtb_snd2.bin", 0x0000, 0x080000, CRC(034a49dc) SHA1(aac70d867856f13f5948e81ed3ca7f2746edf134) ) \
+ ROM_LOAD( "mtb_snd1.bin", 0x000000, 0x080000, CRC(4abca575) SHA1(8f0e3fd169cbf0876368dac335bf81ab0601c923) ) \
+ ROM_LOAD( "mtb_snd2.bin", 0x080000, 0x080000, CRC(034a49dc) SHA1(aac70d867856f13f5948e81ed3ca7f2746edf134) ) \
#define sc_mtbcl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008009.lo", 0x00001, 0x100000, CRC(b9334137) SHA1(e7481688e18b56bddee4a2eff219f83ac5180082) ) \
- ROM_LOAD( "95008010.hi", 0x00000, 0x100000, CRC(cb197b7e) SHA1(56fb416a98bc2875df11024518babf4a07418a79) ) \
+ ROM_LOAD( "95008009.lo", 0x000000, 0x100000, CRC(b9334137) SHA1(e7481688e18b56bddee4a2eff219f83ac5180082) ) \
+ ROM_LOAD( "95008010.hi", 0x100000, 0x100000, CRC(cb197b7e) SHA1(56fb416a98bc2875df11024518babf4a07418a79) ) \
#define sc_m2m_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2446,8 +2485,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_pen1_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "pub-en.s1", 0x0000, 0x080000, CRC(7e3f4295) SHA1(b7a2c538d79663a3d21f89311195619158fa7197) ) /* need testing */ \
- ROM_LOAD( "pub-en.s2", 0x0000, 0x080000, CRC(637d3c0f) SHA1(193964efc28e56b05f39099a696dd3e9119b80dd) ) \
+ ROM_LOAD( "pub-en.s1", 0x000000, 0x080000, CRC(7e3f4295) SHA1(b7a2c538d79663a3d21f89311195619158fa7197) ) /* need testing */ \
+ ROM_LOAD( "pub-en.s2", 0x080000, 0x080000, CRC(637d3c0f) SHA1(193964efc28e56b05f39099a696dd3e9119b80dd) ) \
\
ROM_REGION( 0x400000, "others", ROMREGION_ERASE00 ) \
ROM_LOAD( "pbemydot", 0x0000, 0x010000, CRC(b056d3d4) SHA1(6c1dbc6fcb4761c25f9cc8123e9f0fe791488c19) ) /* DMD rom? Possibly SC2 DM01 */ \
@@ -2465,19 +2504,19 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_party_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008113.bin", 0x0000, 0x100000, CRC(7e54f87c) SHA1(b64e4da7c088ba2f328d6adcfd0a3824d98a5f31) ) \
- ROM_LOAD( "95008114.bin", 0x0000, 0x100000, CRC(594fef43) SHA1(8549d372ffb0194823afc11992d8a16f6caed2ff) ) \
+ ROM_LOAD( "95008113.bin", 0x000000, 0x100000, CRC(7e54f87c) SHA1(b64e4da7c088ba2f328d6adcfd0a3824d98a5f31) ) \
+ ROM_LOAD( "95008114.bin", 0x100000, 0x100000, CRC(594fef43) SHA1(8549d372ffb0194823afc11992d8a16f6caed2ff) ) \
#define sc_paytm_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004224.sn1", 0x0000, 0x080000, CRC(74382d29) SHA1(bd0323b7208e9b03e2d8468f7d4603fb4a3fe394) ) \
- ROM_LOAD( "95004225.sn2", 0x0000, 0x080000, CRC(23efa88d) SHA1(af52ec3dcb45a2ea26eaa273c783134402105168) ) \
+ ROM_LOAD( "95004224.sn1", 0x000000, 0x080000, CRC(74382d29) SHA1(bd0323b7208e9b03e2d8468f7d4603fb4a3fe394) ) \
+ ROM_LOAD( "95004225.sn2", 0x080000, 0x080000, CRC(23efa88d) SHA1(af52ec3dcb45a2ea26eaa273c783134402105168) ) \
#define sc_pgold_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004316.snd", 0x0000, 0x080000, CRC(94a9ec9c) SHA1(bab1a431e2857b9db9fa3f3ef28f150e19c4ae50) ) /* casino */ \
- ROM_LOAD( "95008141.bin", 0x0000, 0x100000, CRC(e1b214dc) SHA1(811f6ec42961496f8cd9fb3434ab6a07457ca61a) ) \
- ROM_LOAD( "95008142.bin", 0x0000, 0x100000, CRC(faa84d52) SHA1(f5139df5e9ff95fab3c01ac2b1aa44b1d939bf7a) ) \
+ ROM_LOAD( "95004316.snd", 0x000000, 0x080000, CRC(94a9ec9c) SHA1(bab1a431e2857b9db9fa3f3ef28f150e19c4ae50) ) /* casino */ \
+ ROM_LOAD( "95008141.bin", 0x000000, 0x100000, CRC(e1b214dc) SHA1(811f6ec42961496f8cd9fb3434ab6a07457ca61a) ) \
+ ROM_LOAD( "95008142.bin", 0x100000, 0x100000, CRC(faa84d52) SHA1(f5139df5e9ff95fab3c01ac2b1aa44b1d939bf7a) ) \
#define sc_polic_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2489,8 +2528,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_pogbl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008750.bin", 0x0000, 0x100000, CRC(25a94ab7) SHA1(9ee3a1acb2734a5663d925fa050c15d154f79678) ) \
- ROM_LOAD( "95008751.bin", 0x0000, 0x100000, CRC(53c97577) SHA1(5ec3868967073b4ed429fed943fbcd568a85b4f3) ) \
+ ROM_LOAD( "95008750.bin", 0x000000, 0x100000, CRC(25a94ab7) SHA1(9ee3a1acb2734a5663d925fa050c15d154f79678) ) \
+ ROM_LOAD( "95008751.bin", 0x100000, 0x100000, CRC(53c97577) SHA1(5ec3868967073b4ed429fed943fbcd568a85b4f3) ) \
#define sc_pwrsg_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2505,8 +2544,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_ppclb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008934.bin", 0x0000, 0x100000, CRC(87290522) SHA1(27deddd66b0ac9a0f4fe526f0eda7f6b2e73a8b6) ) \
- ROM_LOAD( "95008935.bin", 0x0000, 0x100000, CRC(7517053c) SHA1(d83019c52b8c78539359e9277864717c76fae0ce) ) \
+ ROM_LOAD( "95008934.bin", 0x000000, 0x100000, CRC(87290522) SHA1(27deddd66b0ac9a0f4fe526f0eda7f6b2e73a8b6) ) \
+ ROM_LOAD( "95008935.bin", 0x100000, 0x100000, CRC(7517053c) SHA1(d83019c52b8c78539359e9277864717c76fae0ce) ) \
#define sc_pipe_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2552,8 +2591,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_rvl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004259.sn1", 0x0000, 0x080000, CRC(c26ed994) SHA1(da336ab76c1c148906c734d7239b2b83a05ec083) ) \
- ROM_LOAD( "95004260.sn2", 0x0000, 0x080000, CRC(1a32d1bd) SHA1(e88ba7b8b353ea168a689e1d2be8c753a56f8f1d) ) \
+ ROM_LOAD( "95004259.sn1", 0x000000, 0x080000, CRC(c26ed994) SHA1(da336ab76c1c148906c734d7239b2b83a05ec083) ) \
+ ROM_LOAD( "95004260.sn2", 0x080000, 0x080000, CRC(1a32d1bd) SHA1(e88ba7b8b353ea168a689e1d2be8c753a56f8f1d) ) \
#define sc_rogds_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2574,8 +2613,7 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_pstat_others \
ROM_REGION( 0x100000, "ymz", 0 ) \
- ROM_LOAD( "95008294.bin", 0x0000, 0x0e410e, CRC(89e20874) SHA1(d6539d3051938d01c980360046e33c04e35a7929) ) \
- ROM_LOAD( "paystation_sound", 0x0000, 0x100000, CRC(0d87f9af) SHA1(7b00cbe3ba69f646fd692bfd6f002bd37801325e) ) \
+ ROM_LOAD( "95008294", 0x0000, 0x100000, CRC(0d87f9af) SHA1(7b00cbe3ba69f646fd692bfd6f002bd37801325e) ) \
#define sc_po8_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2587,8 +2625,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_stl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "sk_t_lim.sn1", 0x0000, 0x080000, CRC(1b88bf7d) SHA1(76a8453fd2f8375030f69a3a569b45daceb3e4f7) ) /*Need testing*/ \
- ROM_LOAD( "sk_t_lim.sn2", 0x0000, 0x080000, CRC(b3ecf658) SHA1(bf4ce85a3662df6dacfa42e3b4f9dfd6bba43b24) ) \
+ ROM_LOAD( "sk_t_lim.sn1", 0x000000, 0x080000, CRC(1b88bf7d) SHA1(76a8453fd2f8375030f69a3a569b45daceb3e4f7) ) /*Need testing*/ \
+ ROM_LOAD( "sk_t_lim.sn2", 0x080000, 0x080000, CRC(b3ecf658) SHA1(bf4ce85a3662df6dacfa42e3b4f9dfd6bba43b24) ) \
#define sc_sbust_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2672,8 +2710,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_ticlb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004082.p1", 0x0000, 0x080000, CRC(b7caba0f) SHA1(777afdb6a2f78edad5f4df506eb4cd571f9f357b) ) \
- ROM_LOAD( "95004083.p2", 0x0000, 0x080000, CRC(c0cc21b7) SHA1(d0b22db4c1faeef34b794ac4c31bc9fd386493ea) ) \
+ ROM_LOAD( "95004082.p1", 0x000000, 0x080000, CRC(b7caba0f) SHA1(777afdb6a2f78edad5f4df506eb4cd571f9f357b) ) \
+ ROM_LOAD( "95004083.p2", 0x080000, 0x080000, CRC(c0cc21b7) SHA1(d0b22db4c1faeef34b794ac4c31bc9fd386493ea) ) \
\
ROM_REGION( 0x400000, "others", 0 ) \
ROM_LOAD( "club-treasure-island_mtx_ass.bin", 0x0000, 0x010000, CRC(74f97b29) SHA1(9334bf1e4b4e2bcbbfaa5ae32201ceaab0641d83) ) /* DMD */ \
@@ -2684,8 +2722,8 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_tfclb_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008043.bin", 0x0000, 0x100000, CRC(b168cec4) SHA1(42b891ba918c7063420688c99dc72609801a1987) ) \
- ROM_LOAD( "95008044.bin", 0x0000, 0x100000, CRC(6074fa77) SHA1(1d4fa88a7ba2b020042ef3681e0f8eb732705d55) ) \
+ ROM_LOAD( "95008043.bin", 0x000000, 0x100000, CRC(b168cec4) SHA1(42b891ba918c7063420688c99dc72609801a1987) ) \
+ ROM_LOAD( "95008044.bin", 0x100000, 0x100000, CRC(6074fa77) SHA1(1d4fa88a7ba2b020042ef3681e0f8eb732705d55) ) \
#define sc_ttp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2697,13 +2735,13 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_tic2_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004231_1.bin", 0x0000, 0x080000, CRC(af1512be) SHA1(4196820fa06b5e09f7108894ca89fc43e4ac3da5) ) \
- ROM_LOAD( "95004232_2.bin", 0x0000, 0x080000, CRC(bddddec8) SHA1(3dd7dab9ad3e4475cd10c675bbc5a5fd28cf953e) ) \
+ ROM_LOAD( "95004231_1.bin", 0x000000, 0x080000, CRC(af1512be) SHA1(4196820fa06b5e09f7108894ca89fc43e4ac3da5) ) \
+ ROM_LOAD( "95004232_2.bin", 0x080000, 0x080000, CRC(bddddec8) SHA1(3dd7dab9ad3e4475cd10c675bbc5a5fd28cf953e) ) \
#define sc_tgear_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95008063.1", 0x0000, 0x100000, CRC(f87314dc) SHA1(00528243bd58e50ab24dde879f352feec2721019) ) \
- ROM_LOAD( "95008063.2", 0x0000, 0x100000, CRC(5d25d9e8) SHA1(a7f1abcf4bdb5ced2b414d43a13568d13ac334de) ) \
+ ROM_LOAD( "95008063.1", 0x000000, 0x100000, CRC(f87314dc) SHA1(00528243bd58e50ab24dde879f352feec2721019) ) \
+ ROM_LOAD( "95008063.2", 0x100000, 0x100000, CRC(5d25d9e8) SHA1(a7f1abcf4bdb5ced2b414d43a13568d13ac334de) ) \
#define sc_tload_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
@@ -2739,21 +2777,21 @@ INPUT_PORTS_EXTERN( sc4 );
#define sc_valnv_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "sound1.bin", 0x0000, 0x080000, CRC(cedee498) SHA1(311ab99746cff8f72ec8ffb9ac386a713fc300dd) ) \
- ROM_LOAD( "sound2.bin", 0x0000, 0x080000, CRC(0994b7bb) SHA1(ad79998467fee8fd95c944ea6a33450fcf6d3d56) ) \
+ ROM_LOAD( "sound1.bin", 0x000000, 0x080000, CRC(cedee498) SHA1(311ab99746cff8f72ec8ffb9ac386a713fc300dd) ) \
+ ROM_LOAD( "sound2.bin", 0x080000, 0x080000, CRC(0994b7bb) SHA1(ad79998467fee8fd95c944ea6a33450fcf6d3d56) ) \
#define sc_valqp_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "95004296.sn1", 0x0000, 0x080000, CRC(aecc8138) SHA1(64fd18666c2c753899bff971227b9358c2bf22f1) ) \
- ROM_LOAD( "95004297.sn2", 0x0000, 0x080000, CRC(2c8b698b) SHA1(7b8dd1f2215579b5ad69a2a1f11bfcd04e3d07f9) ) \
+ ROM_LOAD( "95004296.sn1", 0x000000, 0x080000, CRC(aecc8138) SHA1(64fd18666c2c753899bff971227b9358c2bf22f1) ) \
+ ROM_LOAD( "95004297.sn2", 0x080000, 0x080000, CRC(2c8b698b) SHA1(7b8dd1f2215579b5ad69a2a1f11bfcd04e3d07f9) ) \
#define sc_wadzl_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
#define sc_wernr_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
- ROM_LOAD( "gw_snd_1.8mb", 0x0000, 0x100000, CRC(990a3471) SHA1(356120558681440cac8252223c31fb9eca2572db) ) \
- ROM_LOAD( "gw_snd_2.8mb", 0x0000, 0x100000, CRC(468431e6) SHA1(90e8dd52b1ce752672b0a02d3cb7715cfa3fb49d) ) \
+ ROM_LOAD( "gw_snd_1.8mb", 0x000000, 0x100000, CRC(990a3471) SHA1(356120558681440cac8252223c31fb9eca2572db) ) \
+ ROM_LOAD( "gw_snd_2.8mb", 0x100000, 0x100000, CRC(468431e6) SHA1(90e8dd52b1ce752672b0a02d3cb7715cfa3fb49d) ) \
#define sc_wrnlt_others \
ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \
diff --git a/src/mame/mame.mak b/src/mame/mame.mak
index 3a5f4935a66..193e7af016c 100644
--- a/src/mame/mame.mak
+++ b/src/mame/mame.mak
@@ -2206,3 +2206,6 @@ $(MACHINE)/model1.o: $(MAMESRC)/includes/model1.h $(MAMESRC)/audio/dsbz80.h
$(VIDEO)/model2.o: $(MAMESRC)/video/model2rd.c
$(VIDEO)/model3.o: $(MAMESRC)/video/m3raster.c
$(VIDEO)/n64.o: $(MAMESRC)/video/rdpfiltr.c
+$(DRIVERS)/bfm_sc4.o: $(MAMESRC)/includes/bfm_sc45.h
+
+