Speed-up fixes from Haze, nw
This commit is contained in:
parent
b96311ab37
commit
6f52e8da2e
@ -32,9 +32,11 @@ public:
|
||||
Video Hardware
|
||||
***************************************************************************/
|
||||
|
||||
UINT16* cavesh3_ram16;
|
||||
|
||||
struct _clr_t
|
||||
{
|
||||
INT8 r,g,b;
|
||||
INT8 r,g,b;
|
||||
};
|
||||
typedef struct _clr_t clr_t;
|
||||
|
||||
@ -191,19 +193,8 @@ static VIDEO_START( cavesh3 )
|
||||
cavesh_bitmaps[0] = auto_bitmap_alloc(machine, 0x2000, 0x1000, BITMAP_FORMAT_INDEXED16);
|
||||
}
|
||||
|
||||
INLINE UINT32 GFX_OFFSET( UINT32 p, UINT32 x0, UINT32 y0, UINT32 x, UINT32 y )
|
||||
INLINE UINT32 GFX_OFFSET( UINT32 x0, UINT32 y0, UINT32 x, UINT32 y )
|
||||
{
|
||||
// return p * 0x100 * 0x1000 +
|
||||
// ((x0 + x) & 0x00ff) +
|
||||
// ((y0 + y) & 0x0fff) * 0x100;
|
||||
|
||||
/*
|
||||
// to see flash
|
||||
return (((x0 + x) & 0x1f00)>>8) * 0x100 * 0x1000 +
|
||||
((x0 + x) & 0x00ff) +
|
||||
((y0 + y) & 0x0fff) * 0x100;
|
||||
*/
|
||||
|
||||
// correct
|
||||
return ((x0 + x) & 0x1fff) +
|
||||
((y0 + y) & 0x0fff) * 0x2000;
|
||||
@ -233,15 +224,32 @@ INLINE void draw_sprite(
|
||||
if (flipy) { yf = -1; src_y += (dimy-1); }
|
||||
else { yf = +1; }
|
||||
|
||||
for (y = 0; y < dimy; y++)
|
||||
{
|
||||
for (x = 0; x < dimx; x++)
|
||||
{
|
||||
pen = gfx[GFX_OFFSET(src_p,src_x,src_y, xf * x, yf * y) % gfx_size];
|
||||
if ((pen & 0x8000) && ((dst_x + x) >= clip->min_x) && ((dst_x + x) <= clip->max_x) && ((dst_y + y) >= clip->min_y) && ((dst_y + y) <= clip->max_y))
|
||||
{
|
||||
bmp = BITMAP_ADDR16(bitmap, dst_y + y, dst_x + x);
|
||||
int starty = 0;
|
||||
|
||||
if (dst_y < clip->min_y)
|
||||
starty = clip->min_y - dst_y;
|
||||
|
||||
for (y = starty; y < dimy; y++)
|
||||
{
|
||||
if ((dst_y + y) > clip->max_y)
|
||||
return;
|
||||
|
||||
bmp = BITMAP_ADDR16(bitmap, dst_y + y, 0);
|
||||
|
||||
int startx = 0;
|
||||
|
||||
if (dst_x < clip->min_x)
|
||||
startx = clip->min_x - dst_x;
|
||||
|
||||
for (x = startx; x < dimx; x++)
|
||||
{
|
||||
if ((dst_x + x) > clip->max_x)
|
||||
break;
|
||||
|
||||
pen = gfx[GFX_OFFSET(src_x,src_y, xf * x, yf * y) & (gfx_size-1)];
|
||||
|
||||
if ((tint) ||(pen & 0x8000)) // (tint) not quite right but improves deathsml
|
||||
{
|
||||
// convert source to clr
|
||||
pen_to_clr(pen, &s_clr);
|
||||
|
||||
@ -252,7 +260,7 @@ INLINE void draw_sprite(
|
||||
if (blend)
|
||||
{
|
||||
// convert destination to clr
|
||||
pen_to_clr(*bmp, &d_clr);
|
||||
pen_to_clr(bmp[dst_x + x], &d_clr);
|
||||
|
||||
// transform source
|
||||
cavesh_clr_select(&s_clr, &d_clr, s_alpha_clr, s_mode, &clr0);
|
||||
@ -267,9 +275,9 @@ INLINE void draw_sprite(
|
||||
}
|
||||
|
||||
// write result
|
||||
*bmp = clr_to_pen(&s_clr);
|
||||
|
||||
bmp[dst_x + x] = clr_to_pen(&s_clr);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -278,17 +286,18 @@ INLINE void draw_sprite(
|
||||
|
||||
INLINE UINT16 READ_NEXT_WORD(address_space &space, offs_t *addr)
|
||||
{
|
||||
UINT16 data = space.read_word(*addr);
|
||||
// UINT16 data = space.read_word(*addr); // going through the memory system is 'more correct' but noticably slower
|
||||
UINT16 data = cavesh3_ram16[((*addr&(0x7fffff))>>1)^3]; // this probably needs to be made endian safe tho
|
||||
*addr += 2;
|
||||
|
||||
// printf("data %04x\n", data);
|
||||
return data;
|
||||
}
|
||||
|
||||
INLINE void cavesh_gfx_copy(address_space &space, offs_t *addr, int layer)
|
||||
INLINE void cavesh_gfx_copy(address_space &space, offs_t *addr)
|
||||
{
|
||||
UINT32 x,y, dst_p,dst_x,dst_y, dimx,dimy;
|
||||
// UINT16 *dst;
|
||||
UINT16 *dst;
|
||||
|
||||
// 0x20000000
|
||||
READ_NEXT_WORD(space, addr);
|
||||
@ -312,14 +321,16 @@ INLINE void cavesh_gfx_copy(address_space &space, offs_t *addr, int layer)
|
||||
|
||||
for (y = 0; y < dimy; y++)
|
||||
{
|
||||
dst = BITMAP_ADDR16(cavesh_bitmaps[0], dst_y + y, 0);
|
||||
|
||||
for (x = 0; x < dimx; x++)
|
||||
{
|
||||
*BITMAP_ADDR16(cavesh_bitmaps[0], dst_y + y, dst_x + x) = READ_NEXT_WORD(space, addr);
|
||||
dst[dst_x + x] = READ_NEXT_WORD(space, addr);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
INLINE void cavesh_gfx_draw(address_space &space, offs_t *addr, int layer)
|
||||
INLINE void cavesh_gfx_draw(address_space &space, offs_t *addr)
|
||||
{
|
||||
int x,y, dimx,dimy, flipx,flipy, src_p;
|
||||
int tint,blend, s_alpha,s_mode, d_alpha,d_mode;
|
||||
@ -380,8 +391,9 @@ INLINE void cavesh_gfx_draw(address_space &space, offs_t *addr, int layer)
|
||||
cavesh_bitmaps[0], &cavesh_bitmaps[0]->cliprect, BITMAP_ADDR16(cavesh_bitmaps[0], 0,0),cavesh_gfx_size,
|
||||
src_p,src_x,src_y, x,y, dimx,dimy, flipx,flipy,
|
||||
blend, &s_alpha_clr, s_mode, &d_alpha_clr, d_mode,
|
||||
tint, &tint_clr
|
||||
tint, &tint_clr
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
// Death Smiles has bad text with wrong clip sizes, must clip to screen size.
|
||||
@ -391,7 +403,7 @@ static void cavesh_gfx_exec(address_space &space)
|
||||
|
||||
offs_t addr = cavesh_gfx_addr & 0x1fffffff;
|
||||
|
||||
logerror("GFX EXEC: %08X\n", addr);
|
||||
// logerror("GFX EXEC: %08X\n", addr);
|
||||
|
||||
cavesh_bitmaps[0]->cliprect.min_x = cavesh_gfx_scroll_1_x;
|
||||
cavesh_bitmaps[0]->cliprect.min_y = cavesh_gfx_scroll_1_y;
|
||||
@ -410,8 +422,6 @@ static void cavesh_gfx_exec(address_space &space)
|
||||
|
||||
case 0xc000:
|
||||
data = READ_NEXT_WORD(space, &addr);
|
||||
//logerror("GFX LAYER: %X\n", (UINT32)data);
|
||||
//printf("GFX LAYER: %X\n", (UINT32)data);
|
||||
layer = data ? 1 : 0;
|
||||
|
||||
if (layer)
|
||||
@ -432,12 +442,12 @@ static void cavesh_gfx_exec(address_space &space)
|
||||
|
||||
case 0x2000:
|
||||
addr -= 2;
|
||||
cavesh_gfx_copy(space, &addr, layer);
|
||||
cavesh_gfx_copy(space, &addr);
|
||||
break;
|
||||
|
||||
case 0x1000:
|
||||
addr -= 2;
|
||||
cavesh_gfx_draw(space, &addr, layer);
|
||||
cavesh_gfx_draw(space, &addr);
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -1042,6 +1052,7 @@ static MACHINE_RESET( cavesh3 )
|
||||
{
|
||||
flash_enab = 0;
|
||||
flash_hard_reset(machine);
|
||||
cavesh3_ram16 = (UINT16*)cavesh3_ram;
|
||||
}
|
||||
|
||||
static PALETTE_INIT( cavesh_RRRRR_GGGGG_BBBBB )
|
||||
|
@ -119,7 +119,7 @@ VIDEO_START( gamtor )
|
||||
}
|
||||
|
||||
SCREEN_UPDATE(gamtor)
|
||||
{
|
||||
{
|
||||
gaminator_state *state = screen->machine().driver_data<gaminator_state>();
|
||||
|
||||
int tile_base = 0x00000;
|
||||
@ -137,7 +137,7 @@ SCREEN_UPDATE(gamtor)
|
||||
for (int x=0;x<80;x++)
|
||||
{
|
||||
UINT32 chr = state->m_tmapram1[count];
|
||||
|
||||
|
||||
|
||||
int tile = ((chr>>24)&0xff)*2;
|
||||
tile += tile_base;
|
||||
@ -159,11 +159,11 @@ SCREEN_UPDATE(gamtor)
|
||||
|
||||
static ADDRESS_MAP_START( gaminator_map, AS_PROGRAM, 32 )
|
||||
AM_RANGE(0x00000000, 0x07ffffff) AM_ROM
|
||||
AM_RANGE(0x08000000, 0x0bffffff) AM_RAM_WRITE(gaminator_vram_w) AM_BASE_MEMBER(gaminator_state, m_vram) // 0x083ea460 = some data
|
||||
AM_RANGE(0x08000000, 0x0bffffff) AM_RAM_WRITE(gaminator_vram_w) AM_BASE_MEMBER(gaminator_state, m_vram) // 0x083ea460 = some data
|
||||
AM_RANGE(0x1e040008, 0x1e04000b) AM_WRITE( gamtor_unk_w )
|
||||
|
||||
|
||||
AM_RANGE(0x20000000, 0x2003ffff) AM_RAM
|
||||
|
||||
|
||||
/* some kind of video control / blitter? */
|
||||
AM_RANGE(0x400003c0, 0x400003c3) AM_WRITE( gamtor_unk3_w )
|
||||
AM_RANGE(0x400003c4, 0x400003c7) AM_READWRITE( gamtor_unk4_r, gamtor_unk4_w )
|
||||
@ -190,7 +190,7 @@ static MACHINE_CONFIG_START( gaminator, gaminator_state )
|
||||
MCFG_CPU_PROGRAM_MAP(gaminator_map)
|
||||
MCFG_CPU_VBLANK_INT("screen", irq6_line_hold) // irq6 seems to be needed to get past the ROM checking
|
||||
|
||||
|
||||
|
||||
MCFG_SCREEN_ADD("screen", RASTER)
|
||||
MCFG_SCREEN_REFRESH_RATE(60)
|
||||
MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0))
|
||||
@ -311,7 +311,7 @@ ROM_START( gamt4dbag )
|
||||
ROM_LOAD( "gaminator494___1_v 5.5-6.rom", 0x0000000, 0x4000000, CRC(67bd128a) SHA1(4452891fe58ec3df0610c02b24d26e48f41c97ee) ) /* V5.5-6 Sep 27 2005 */
|
||||
ROM_LOAD( "g4_5.5-6bag(lady).bin", 0x4000000, 0x4000000, CRC(d4a299ac) SHA1(a9984f46868905e38d5458aed69e9be8e7a76818) )
|
||||
ROM_END
|
||||
|
||||
|
||||
|
||||
ROM_START( gamt4e )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
@ -544,7 +544,7 @@ ROM_START( gamt10 )
|
||||
ROM_LOAD( "gamt10-94-5.5-5.rom1", 0x0000000, 0x4000000, CRC(4c2286cb) SHA1(226e729b348d02fdcb2e8db2ef11c903d0659cba) ) /* V5.5-5 Aug 24 2005 */
|
||||
ROM_LOAD( "gamt10-9x-5.5-5.rom2", 0x4000000, 0x4000000, CRC(ae1acaf2) SHA1(1cf40608e19f2e94e9c49c6a046940e74023c43c) )
|
||||
ROM_END
|
||||
|
||||
|
||||
ROM_START( gamt10bag )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt10-94-5.5-5.rom1", 0x0000000, 0x4000000, CRC(4c2286cb) SHA1(226e729b348d02fdcb2e8db2ef11c903d0659cba) ) /* V5.5-5 Aug 24 2005 */
|
||||
@ -560,7 +560,7 @@ ROM_START( gamt10a )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt10b )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt10-96-5.5-10.rom1", 0x0000000, 0x4000000, CRC(f5eec6c2) SHA1(49069055fdcbeef9e43f71a42eba0ef8f3a4c4e6) ) /* V5.5-10 Mar 29 2006 */
|
||||
ROM_LOAD( "gamt10-9x-5.5-10.rom2", 0x4000000, 0x4000000, CRC(2712f24e) SHA1(776c422d8a08edb2e9cfc30a69d3cc87eae50e7d) )
|
||||
ROM_END
|
||||
@ -584,7 +584,7 @@ ROM_START( gamt10e )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt10f )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt10-92-5.6-4.rom1", 0x0000000, 0x4000000, CRC(6079b346) SHA1(9fc90c47c394cc86771bce365c9abe98bc1b70d9) ) /* V5.6-4 Dec 04 2006 */
|
||||
ROM_LOAD( "gamt10-9x-5.6-4.rom2", 0x4000000, 0x4000000, CRC(62adda8d) SHA1(e4fa94b2aa321f7d27666f6a55aaa871c8a0ed85) )
|
||||
ROM_END
|
||||
@ -622,7 +622,7 @@ ROM_START( gamt10j )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt10k )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt10-92-5.6-8.rom1", 0x0000000, 0x4000000, CRC(68be653f) SHA1(a850fb7913bd5b60e4f4742edc43530a5f9835fc) ) /* V5.6-8 Jul 04 2007 */
|
||||
ROM_LOAD( "gamt10-9x-5.6-8.rom2", 0x4000000, 0x4000000, CRC(63943c1b) SHA1(649f1b2da380c996d2aa2f04fca4ad17b686e79f) )
|
||||
ROM_END
|
||||
@ -634,45 +634,45 @@ ROM_START( gamt10l )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt10m )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt10-90-5.6-10.rom1", 0x0000000, 0x4000000, CRC(4a3b02ed) SHA1(70d30221b44d5a24f415fb5c12cd0cf43d479127) ) /* V5.6-10 Oct 25 2007 */
|
||||
ROM_LOAD( "gamt10-9x-5.6-10.rom2", 0x4000000, 0x4000000, CRC(caad5ae9) SHA1(2812c3c3e73a7d82c77030e6c327e56f8f934891) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt10n )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt10-92-5.6-10.rom1", 0x0000000, 0x4000000, CRC(cfe0c391) SHA1(898d3f657c755e9ab574f1b31593e9a7173c4026) ) /* V5.6-10 Oct 25 2007 */
|
||||
ROM_LOAD( "gamt10-9x-5.6-10.rom2", 0x4000000, 0x4000000, CRC(caad5ae9) SHA1(2812c3c3e73a7d82c77030e6c327e56f8f934891) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt10o )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt10-94-5.6-10.rom1", 0x0000000, 0x4000000, CRC(279343a3) SHA1(2fe7116317051d48ed95485ca210cc3a4e60a639) ) /* V5.6-10 Oct 25 2007 */
|
||||
ROM_LOAD( "gamt10-9x-5.6-10.rom2", 0x4000000, 0x4000000, CRC(caad5ae9) SHA1(2812c3c3e73a7d82c77030e6c327e56f8f934891) )
|
||||
ROM_END
|
||||
|
||||
|
||||
/* Gaminator 11 */
|
||||
|
||||
ROM_START( gamt11 )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt11-94-5.5-8.rom1", 0x0000000, 0x4000000, CRC(aecd4412) SHA1(758c46fc8fcdb491e5f3746d54d0c3fd07eb5205) ) /* V5.5-8 Nov 17 2005 */
|
||||
ROM_LOAD( "gamt11-9x-5.5-8.rom2", 0x4000000, 0x4000000, CRC(8df8c5d2) SHA1(edd004f0c1b8403187e370cae901cf6c9a7e4e30) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt11a )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt11-96-5.5-8.rom1", 0x0000000, 0x4000000, CRC(f9949aed) SHA1(8b589747e5ed3d27292ab57e9c052c58523b73fb) ) /* V5.5-8 Nov 17 2005 */
|
||||
ROM_LOAD( "gamt11-9x-5.5-8.rom2", 0x4000000, 0x4000000, CRC(8df8c5d2) SHA1(edd004f0c1b8403187e370cae901cf6c9a7e4e30) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt11b )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt11-94-5.6-0.rom1", 0x0000000, 0x4000000, CRC(d591cde6) SHA1(5769962209e7364426d2c24149229e45e5531e73) ) /* V5.6-0 Sep 11 2006 */
|
||||
ROM_LOAD( "gamt11-9x-5.6-0.rom2", 0x4000000, 0x4000000, CRC(98889261) SHA1(aad17a810a47b254023301740ca9d05c1060e4b4) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt11bmult )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt11-94-5.6-0.rom1", 0x0000000, 0x4000000, CRC(d591cde6) SHA1(5769962209e7364426d2c24149229e45e5531e73) ) /* V5.6-0 Sep 11 2006 */
|
||||
ROM_LOAD( "gam_11_94_5.6-0_2.rom", 0x4000000, 0x4000000, CRC(e1e476c7) SHA1(c513df590d0a8e9d26fc58a066cf9d3a1a77cc7a) )
|
||||
ROM_END
|
||||
@ -680,7 +680,7 @@ ROM_END
|
||||
|
||||
|
||||
ROM_START( gamt11c )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt11-xx-5.6-5.rom1", 0x0000000, 0x4000000, CRC(e1ae549f) SHA1(2bf4aa23dd67de526676d4a56da1fed2f4316047) ) /* V5.6-5 Mar 21 2007 */
|
||||
ROM_LOAD( "gamt11-9x-5.6-5.rom2", 0x4000000, 0x4000000, CRC(c69ada8e) SHA1(7519ccf4279dae6a2e661fa2dee874e48f3c7b42) )
|
||||
ROM_END
|
||||
@ -688,19 +688,19 @@ ROM_END
|
||||
/* Gaminator 12 */
|
||||
|
||||
ROM_START( gamt12 )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt12-96-5.5-6.rom1", 0x0000000, 0x4000000, CRC(875d9879) SHA1(467c8f3ea6bbfb2527cfac00b73991ff185eccf7) ) /* V5.5-6 Oct 17 2005 */
|
||||
ROM_LOAD( "gamt12-9x-5.5-6.rom2", 0x4000000, 0x4000000, CRC(a5a08cb1) SHA1(73de85869c7762c34658b8619120879e29eeed8c) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt12a )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt12-96-5.6-0.rom1", 0x0000000, 0x4000000, CRC(286dd471) SHA1(6f8cdb9efa488450d41348887403c5100fd9a70e) ) /* V5.6-0 Sep 07 2006 */
|
||||
ROM_LOAD( "gamt12-9x-5.6-0.rom2", 0x4000000, 0x4000000, CRC(4d9a8dc4) SHA1(5605bd3dc10bccecb4ec17641a8b63dc3bf4c07e) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt12b )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt12-96-5.6-5.rom1", 0x0000000, 0x4000000, CRC(641458af) SHA1(a96ea356996b0c7e41e420655d602bf1122dcac4) ) /* V5.6-5 Apr 12 2007 */
|
||||
ROM_LOAD( "gamt12-9x-5.6-5.rom2", 0x4000000, 0x4000000, CRC(078aba43) SHA1(f23a119bea5d97b9e478fe05af2da3328db064ac) )
|
||||
ROM_END
|
||||
@ -708,49 +708,49 @@ ROM_END
|
||||
/* Gaminator 16 */
|
||||
|
||||
ROM_START( gamt16 )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt16-94-5.5-10.rom1", 0x0000000, 0x4000000, CRC(36dc53ae) SHA1(014a2605f465fc8b073d04343dddb5a665a9f9bc) ) /* V5.5-10 Apr 19 2006 */
|
||||
ROM_LOAD( "gamt16-9x-5.5-10.rom2", 0x4000000, 0x4000000, CRC(86ecdc45) SHA1(f14c1c8914bd881cb095d5667685f00b8fd28743) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt16a )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt16-92-5.5-10.rom1", 0x0000000, 0x4000000, CRC(70f304a3) SHA1(d4161a72e24f29c53d5f89abf5b68ad3348c09b2) ) /* V5.5-10 Apr 19 2006 */
|
||||
ROM_LOAD( "gamt16-9x-5.5-10.rom2", 0x4000000, 0x4000000, CRC(86ecdc45) SHA1(f14c1c8914bd881cb095d5667685f00b8fd28743) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt16b ) /* not sure of the version number, was marked 5.5-10 but rom 2 doesn't match above either, could be completely mislabeled */
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt16-96-5.5-10x.rom1", 0x0000000, 0x4000000, NO_DUMP ) /* was identical to file below! */
|
||||
ROM_LOAD( "gamt16-9x-5.5-10x.rom2", 0x4000000, 0x4000000, CRC(00e5d642) SHA1(c52e5e3b8c6e132e1b06c2ddffc8538ea9e53822) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt16c )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor1692_#1_5.6-1.rom", 0x0000000, 0x4000000, CRC(b56420dc) SHA1(389c717eaf51a21f286c526c36fbc3f39929e00f) ) /* V5.6-1 Sep 20 2006 */
|
||||
ROM_LOAD( "gamt16-9x-5.6-1.rom2", 0x4000000, 0x4000000, CRC(b20d5d5d) SHA1(8ae296f846488bf334f7785bc584a4b88a0bc504) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt16d )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor1696_#1_5.6-1.rom", 0x0000000, 0x4000000, CRC(a412a92e) SHA1(748e6a2bb33d8d32004d95c9075630a24859d2b8) ) /* V5.6-1 Sep 20 2006 */
|
||||
ROM_LOAD( "gamt16-9x-5.6-1.rom2", 0x4000000, 0x4000000, CRC(b20d5d5d) SHA1(8ae296f846488bf334f7785bc584a4b88a0bc504) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt16e )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "16_94-5.6-1_1", 0x0000000, 0x4000000, CRC(f34b77d1) SHA1(4aad3285b294e522875db62b046eaa37f90652c7) ) /* V5.6-1 Sep 20 2006 */
|
||||
ROM_LOAD( "gamt16-9x-5.6-1.rom2", 0x4000000, 0x4000000, CRC(b20d5d5d) SHA1(8ae296f846488bf334f7785bc584a4b88a0bc504) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt16f )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor1692v5.6-5_#1.bin", 0x0000000, 0x4000000, CRC(3530bdc1) SHA1(82a72fe38100fb88b679fe50dab14c1035501579) ) /* V5.6-5 Feb 28 2007 */
|
||||
ROM_LOAD( "gamt16-9x-5.6-5.rom2", 0x4000000, 0x4000000, CRC(9484ddec) SHA1(03a21d231496d364f48173064027d6871a3f3fc0) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt16fmult )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor1692v5.6-5_#1.bin", 0x0000000, 0x4000000, CRC(3530bdc1) SHA1(82a72fe38100fb88b679fe50dab14c1035501579) ) /* V5.6-5 Feb 28 2007 */
|
||||
ROM_LOAD( "g16 92%v5.6-5_2", 0x4000000, 0x4000000, CRC(bfad3326) SHA1(b94ac12130563295f2b99d77205a211118f95f37) )
|
||||
ROM_END
|
||||
@ -758,31 +758,31 @@ ROM_END
|
||||
|
||||
|
||||
ROM_START( gamt16g )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor1694_#1_5.6-5.rom", 0x0000000, 0x4000000, CRC(dd433df3) SHA1(b4a89cf4e190c1d32900fa5425a6b1326c722e6d) ) /* V5.6-5 Feb 28 2007 */
|
||||
ROM_LOAD( "gamt16-9x-5.6-5.rom2", 0x4000000, 0x4000000, CRC(9484ddec) SHA1(03a21d231496d364f48173064027d6871a3f3fc0) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt16h )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g16_92_5.6-8_#1", 0x0000000, 0x4000000, CRC(9ad16d5e) SHA1(373e5c49553cb4a4c2f9a9ab2dd15fa45df11ebe) ) /* V5.6-8 Jul 04 2007 */
|
||||
ROM_LOAD( "gamt16-9x-5.6-8.rom2", 0x4000000, 0x4000000, CRC(53079651) SHA1(4f4a5332dd7a144bcb3b96540f2f124876f03abc) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt16i )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g16_94_5.6-8_#1", 0x0000000, 0x4000000, CRC(72a2ed6c) SHA1(16969260e960f3a62dccc9a1e3763abcdaa1fa99) ) /* V5.6-8 Jul 04 2007 */
|
||||
ROM_LOAD( "gamt16-9x-5.6-8.rom2", 0x4000000, 0x4000000, CRC(53079651) SHA1(4f4a5332dd7a144bcb3b96540f2f124876f03abc) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt16j )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g16_92_5.6-10_#1", 0x0000000, 0x4000000, CRC(ca4bf3da) SHA1(5fdef7b46c5d51bf16228c9541b18603bce72b51) ) /* V5.6-10 Oct 25 2007 */
|
||||
ROM_LOAD( "gamt16-9x-5.6-10.rom2", 0x4000000, 0x4000000, CRC(e6fc0478) SHA1(2bf998471ef86bccc45332551738b5fc3f70d188) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt16k )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g16_94_5.6-10_#1", 0x0000000, 0x4000000, CRC(223873e8) SHA1(f57c80ba710529f011ee505fa8e1e6a0af70bc4e) ) /* V5.6-10 Oct 25 2007 */
|
||||
ROM_LOAD( "gamt16-9x-5.6-10.rom2", 0x4000000, 0x4000000, CRC(e6fc0478) SHA1(2bf998471ef86bccc45332551738b5fc3f70d188) )
|
||||
ROM_END
|
||||
@ -790,19 +790,19 @@ ROM_END
|
||||
/* Gaminator 17 */
|
||||
|
||||
ROM_START( gamt17 )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor1792_#1_5.5-10.rom", 0x0000000, 0x4000000, CRC(8da74797) SHA1(f7a654682e870169d1ce2901ac61d2f60ae2d568) ) /*V5.5-10 May 29 2006 */
|
||||
ROM_LOAD( "gamtor1792_#2_5.5-10.rom", 0x4000000, 0x4000000, CRC(9348cb69) SHA1(604060ad6fb2d37cf3d449390e5cfb685d74b11d) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt17a )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor1794_#1_5.5-10.rom", 0x0000000, 0x4000000, CRC(cb88109a) SHA1(c059553c7ce19766007a669b21994b7c81cf320d) ) /*V5.5-10 May 29 2006 */
|
||||
ROM_LOAD( "gamtor1794_#2_5.5-10.rom", 0x4000000, 0x4000000, CRC(9348cb69) SHA1(604060ad6fb2d37cf3d449390e5cfb685d74b11d) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt17b )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor1794_#1_5.6-0", 0x0000000, 0x4000000, CRC(ce6bc732) SHA1(b745938bbcb2dcb6a8ac3d7f46f9919124d9e7ed) ) /* V5.6-0 Sep 04 2006 */
|
||||
ROM_LOAD( "gamtor1794_#2_5.6-0", 0x4000000, 0x4000000, CRC(120f4c40) SHA1(f2450dd1ed2127a4005510baedf5781100556e26) )
|
||||
ROM_END
|
||||
@ -810,25 +810,25 @@ ROM_END
|
||||
/* Gaminator 18 */
|
||||
|
||||
ROM_START( gamt18 )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "18_94_5-5-10_1", 0x0000000, 0x4000000, CRC(c054009f) SHA1(b75b339ae06b005fcd0c78302aceaf64069a6345) ) /* V5.5-10 Jun 19 2006 */
|
||||
ROM_LOAD( "18_94_5-5-10_2", 0x4000000, 0x4000000, CRC(2d798567) SHA1(8e6d36d1d5ae04d7c1bb48d816a865fa074fc24e) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt18a )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g18_96_5.6-0_1.bin", 0x0000000, 0x4000000, CRC(ba25423d) SHA1(455e187c9da7d9c38517794069aa43841af39b96) ) /* V5.6.0 Sep 20 2006 */
|
||||
ROM_LOAD( "g18_96_5.6-0_2.bin", 0x4000000, 0x4000000, CRC(e82c1bd5) SHA1(1dfde1185fc9a4a717529fcbd841f6a9bed3e8cc) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt18b )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g18_94_5-6-0_1", 0x0000000, 0x4000000, CRC(ed7c9cc2) SHA1(558385c03f575b217ca8ba7cbc37603bd7b70fb5) ) /* V5.6-0 Sep 20 2006 */
|
||||
ROM_LOAD( "g18_94_5-6-0_2", 0x4000000, 0x4000000, CRC(e82c1bd5) SHA1(1dfde1185fc9a4a717529fcbd841f6a9bed3e8cc) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt18bmult )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g18_94_5-6-0_1", 0x0000000, 0x4000000, CRC(ed7c9cc2) SHA1(558385c03f575b217ca8ba7cbc37603bd7b70fb5) ) /* V5.6-0 Sep 20 2006 */
|
||||
ROM_LOAD( "g18_94_5.6-0_2.rom", 0x4000000, 0x4000000, CRC(1d9e7456) SHA1(3c9b56816dfa7b6f782f27510f69a2bf40b3415f) )
|
||||
ROM_END
|
||||
@ -837,13 +837,13 @@ ROM_END
|
||||
|
||||
|
||||
ROM_START( gamt18c )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor18_94_5.6-5#1.rom", 0x0000000, 0x4000000, CRC(2095957f) SHA1(a0ae6275875cd77999e105a88c0a8334efc2dd53) ) /* 5.6-5 Mar 16 2007 */
|
||||
ROM_LOAD( "gamtor18_94_5.6-5#2.rom", 0x4000000, 0x4000000, CRC(892bbcb3) SHA1(7dd6a37ce1cb4371c00915ef5a61eef96385ccd1) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt18d )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor18_92_5.6-5#1.rom", 0x0000000, 0x4000000, CRC(c8e6154d) SHA1(60c46196f0f9192717a01acab87304af3600e37c) ) /* V5.6-5 Mar 16 2007 */
|
||||
ROM_LOAD( "gamtor18_92_5.6-5#2.rom", 0x4000000, 0x4000000, CRC(892bbcb3) SHA1(7dd6a37ce1cb4371c00915ef5a61eef96385ccd1) )
|
||||
ROM_END
|
||||
@ -879,13 +879,13 @@ ROM_START( gamt20 )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt20a )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g20_94_5.6-5_#1", 0x0000000, 0x4000000, CRC(efb1d6ad) SHA1(0dbbed1f4561c85fa6388dde5e7cc8dcaad80e2b) ) /* V5.6-5 Apr 02 2007 */
|
||||
ROM_LOAD( "g20_94_5.6-5_#2", 0x4000000, 0x4000000, CRC(560fe75b) SHA1(721d677140eec884571f629aa07538cd3183cb40) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt20b )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor2092v5.6-5_#1.bin", 0x0000000, 0x4000000, CRC(07c2569f) SHA1(b335f6b7ff89ebfdee0cbb21fffedfa04336a85f) ) /* v5.6-5 Apr 02 2007 */
|
||||
ROM_LOAD( "gamtor2092v5.6-5_#2.bin", 0x4000000, 0x4000000, CRC(560fe75b) SHA1(721d677140eec884571f629aa07538cd3183cb40) )
|
||||
ROM_END
|
||||
@ -893,19 +893,19 @@ ROM_END
|
||||
/* Gaminator 21 */
|
||||
|
||||
ROM_START( gamt21 )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor21_92_5.6-5.rom1", 0x0000000, 0x4000000, CRC(e0de022f) SHA1(a29107ee906883cabe0a31be843c20b29541846a) ) /* V5.6-5 Feb 26 2007 */
|
||||
ROM_LOAD( "gamtor21_9x_5.6-5.rom2", 0x4000000, 0x4000000, CRC(c8e6674f) SHA1(0d7fd9489d32faf831f16da79151c7ad0a123287) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt21a )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor21_94_5.6-5.rom1", 0x0000000, 0x4000000, CRC(08ad821d) SHA1(23907398ea83f1ce5c705582f2138e6e8e08f011) ) /* V5.6-5 Feb 26 2007 */
|
||||
ROM_LOAD( "gamtor21_9x_5.6-5.rom2", 0x4000000, 0x4000000, CRC(c8e6674f) SHA1(0d7fd9489d32faf831f16da79151c7ad0a123287) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt21amult )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor21_94_5.6-5.rom1", 0x0000000, 0x4000000, CRC(08ad821d) SHA1(23907398ea83f1ce5c705582f2138e6e8e08f011) ) /* V5.6-5 Feb 26 2007 */
|
||||
ROM_LOAD( "21_94_5.6-5_2.rom", 0x4000000, 0x4000000, CRC(92b36a02) SHA1(e13fd3b122a87251e3735dce6a38d5f966997a7e) )
|
||||
ROM_END
|
||||
@ -915,26 +915,26 @@ ROM_END
|
||||
/* Gaminator 22 */
|
||||
|
||||
ROM_START( gamt22 )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor2290_#1_5.6-5.rom", 0x0000000, 0x4000000, CRC(3b1a6e9d) SHA1(f7c5225195427acd350c5c281708f60a7f0e20cb) ) /* V5.6-5 Mar 06 2007 */
|
||||
ROM_LOAD( "gamtor2290_#2_5.6-5.rom", 0x4000000, 0x4000000, CRC(d64140fc) SHA1(13324082b13beb5f72485fdf5f66ed4323ce94aa) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt22a )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor2292_#1_5.6-5.rom", 0x0000000, 0x4000000, CRC(bec1afe1) SHA1(2304aac2aacd78358c12ed3a797c7cda36990324) ) /* V5.6-5 Mar 06 2007 */
|
||||
ROM_LOAD( "gamtor2292_#2_5.6-5.rom", 0x4000000, 0x4000000, CRC(d64140fc) SHA1(13324082b13beb5f72485fdf5f66ed4323ce94aa) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt22amult )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor2292_#1_5.6-5.rom", 0x0000000, 0x4000000, CRC(bec1afe1) SHA1(2304aac2aacd78358c12ed3a797c7cda36990324) ) /* V5.6-5 Mar 06 2007 */
|
||||
ROM_LOAD( "g22_2", 0x4000000, 0x4000000, CRC(91fd9d7b) SHA1(786f54b8ecc607f9a99db068590e7dbc718fb66a) )
|
||||
ROM_END
|
||||
|
||||
|
||||
ROM_START( gamt22b )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor2294_#1_5.6-5.rom", 0x0000000, 0x4000000, CRC(56b22fd3) SHA1(aac67a6d20889ad69a567aa7f0ea71a89e2b5591) ) /* V5.6-5 Mar 06 2007 */
|
||||
ROM_LOAD( "gamtor2294_#2_5.6-5.rom", 0x4000000, 0x4000000, CRC(d64140fc) SHA1(13324082b13beb5f72485fdf5f66ed4323ce94aa) )
|
||||
ROM_END
|
||||
@ -942,19 +942,19 @@ ROM_END
|
||||
/* Gaminator 23 */
|
||||
|
||||
ROM_START( gamt23 )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor2390_#1_5.6-5.rom", 0x0000000, 0x4000000, CRC(45008770) SHA1(67e49d4055c1b79adef052d97fa0e59cc1031330) ) /* V5.6-5 Apr 24 2007 */
|
||||
ROM_LOAD( "gamtor2390_#2_5.6-5.rom", 0x4000000, 0x4000000, CRC(be9c9b96) SHA1(9e6b2d97b14fa5bf94cacf2b658b5d85f6a3dd5f) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt23a )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor2392_#1_5.6-5.rom", 0x0000000, 0x4000000, CRC(c0db460c) SHA1(8835f7fb7397a2712481ee1701283a97e3a785e6) ) /* V5.6-5 Apr 24 2007 */
|
||||
ROM_LOAD( "gamtor2392_#2_5.6-5.rom", 0x4000000, 0x4000000, CRC(be9c9b96) SHA1(9e6b2d97b14fa5bf94cacf2b658b5d85f6a3dd5f) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt23b )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamtor2394_#1_5.6-5.rom", 0x0000000, 0x4000000, CRC(28a8c63e) SHA1(1970ac0bf6f63c495c77d758e2ca9fb919b5b80e) ) /* V5.6-5 Apr 24 2007 */
|
||||
ROM_LOAD( "gamtor2394_#2_5.6-5.rom", 0x4000000, 0x4000000, CRC(be9c9b96) SHA1(9e6b2d97b14fa5bf94cacf2b658b5d85f6a3dd5f) )
|
||||
ROM_END
|
||||
@ -962,13 +962,13 @@ ROM_END
|
||||
/* Gaminator 29 */
|
||||
|
||||
ROM_START( gamt29 )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g29-5-6-8-92-1", 0x0000000, 0x4000000, CRC(d64043ce) SHA1(ea00e85206b49842436453d323384f6b42981c96) ) /* V5.6-8 Jun 29 2007 */
|
||||
ROM_LOAD( "g29-5-6-8-92-2", 0x4000000, 0x4000000, CRC(6a441fb3) SHA1(a986873b378e51b698812e3f5a6c23075e061d49) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt29a )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g29-5-6-8-94-1", 0x0000000, 0x4000000, CRC(3e33c3fc) SHA1(c536b3df0e673ed7eacaf9ac57dbaa54af22257e) ) /* V5.6-8 Jun 29 2007 */
|
||||
ROM_LOAD( "g29-5-6-8-94-2", 0x4000000, 0x4000000, CRC(6a441fb3) SHA1(a986873b378e51b698812e3f5a6c23075e061d49) )
|
||||
ROM_END
|
||||
@ -976,7 +976,7 @@ ROM_END
|
||||
/* Gaminator 30 */
|
||||
|
||||
ROM_START( gamt30 )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g30v5.6-10#1.rom", 0x0000000, 0x4000000, CRC(e4d5dcce) SHA1(417169de53c7d9110968d087cfe5d611f6875fcc) ) /* V5.6-10 Dec 14 2007 */
|
||||
ROM_LOAD( "g30v5.6-10#2.rom", 0x4000000, 0x4000000, CRC(f5d15593) SHA1(4268115dbbbb710dcfb511d4ed4eccc6b382a9c8) )
|
||||
ROM_END
|
||||
@ -984,13 +984,13 @@ ROM_END
|
||||
/* Gaminator 31 */
|
||||
|
||||
ROM_START( gamt31 )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g31v5.6-10#1.rom", 0x0000000, 0x4000000, CRC(770a3c19) SHA1(082a5e4d4d11803cde1981c3201a6b174b4d86ea) ) /* V5.6-10 Dec 13 2007 */
|
||||
ROM_LOAD( "g31v5.6-10#2.rom", 0x4000000, 0x4000000, CRC(88107247) SHA1(d9c2eabc0d92b7e8b93923fe053c7b0a93c28e76) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt31mult )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g3194%v5.6-12_1", 0x0000000, 0x4000000, CRC(0b873052) SHA1(7b072346ae14bfe475547bdcad946be2a7e6cf2f) )
|
||||
ROM_LOAD( "g3194%v5.6-12_2", 0x4000000, 0x4000000, CRC(4cd4ba07) SHA1(b146db07134b4fa28377f45cdd22ef19bb4b2262) )
|
||||
ROM_END
|
||||
@ -1000,7 +1000,7 @@ ROM_END
|
||||
/* Hot Spot 2 */
|
||||
|
||||
ROM_START( hspot2 )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "hotspot494v5.6-5#1", 0x0000000, 0x4000000, CRC(04f482a5) SHA1(84ab552cd7c776b70889249a9809008584c6de6c) )
|
||||
ROM_LOAD( "hotspot494v5.6-5#2", 0x4000000, 0x4000000, CRC(99e58027) SHA1(c78f019b843d39f45c58c77295e19d07ff6f251d) )
|
||||
ROM_END
|
||||
@ -1008,7 +1008,7 @@ ROM_END
|
||||
/* Hot Spot 3 */
|
||||
|
||||
ROM_START( hspot3 )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "hs3_5425_94_1", 0x0000000, 0x4000000, CRC(5265a518) SHA1(fc60aa91716c583a63984f7f68fe9a1c1834834e) )
|
||||
ROM_LOAD( "hs3_5425_94_2", 0x4000000, 0x4000000, CRC(b499c667) SHA1(58dd6cf2a4564cf7867ac72308c84310f918ca88) )
|
||||
ROM_END
|
||||
@ -1016,93 +1016,93 @@ ROM_END
|
||||
/* Mega Katok 2 */
|
||||
|
||||
ROM_START( megakat )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "megakatok2_94_5.6-0_#1.rom", 0x0000000, 0x4000000, CRC(39ef31ec) SHA1(7a04c15d37b2921a475294dd9e474be4c2a1a0db) )
|
||||
ROM_LOAD( "megakatok2_94_5.6-0_#2.rom", 0x4000000, 0x4000000, CRC(d2024952) SHA1(fcc1c7574eeef0ae26ba80d30fac3e74b8a9dbf2) )
|
||||
ROM_END
|
||||
|
||||
|
||||
ROM_START( gamt1lotc )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g1.1.bin", 0x0000000, 0x4000000, CRC(ce2a8ae7) SHA1(61b81257659271f1686624824b7e13c76e2cc182) )
|
||||
ROM_LOAD( "g1.2.bin", 0x4000000, 0x4000000, CRC(1c8732ba) SHA1(ff3d71ec4650dbad0785ddda135f8726b5cfb493) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt4lotc )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g4_#1", 0x0000000, 0x4000000, CRC(5c36b5dd) SHA1(e89e4e88ba230380d738b2a0b7ce49131387e0ee) )
|
||||
ROM_LOAD( "g4_#2", 0x4000000, 0x4000000, CRC(0222514a) SHA1(a18e1ba91de12742c332866734ba45d88ad23179) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt6lotc )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g6_#1", 0x0000000, 0x4000000, CRC(380f71f2) SHA1(0a96a06774d242ea86c8eb578dcd39b2df0d1452) )
|
||||
ROM_LOAD( "g6_#2", 0x4000000, 0x4000000, CRC(6ec0b445) SHA1(b0ea41775c7355ed704943363fd8fe79179f321d) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt8lotc )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g8_#1", 0x0000000, 0x4000000, CRC(e98e2154) SHA1(1a7be1d8c5a4ce71cf7fa5a6dfd36841aeb14eb0) )
|
||||
ROM_LOAD( "g8_#2", 0x4000000, 0x4000000, CRC(23d8339d) SHA1(e477a15bd8fc08c4f083cc2207d2a616f15ec06d) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt9lotc )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g9.1.bin", 0x0000000, 0x4000000, CRC(d108aa10) SHA1(347d71c094d31eb8022430e6eec0b309041a1606) )
|
||||
ROM_LOAD( "g9.2.bin", 0x4000000, 0x4000000, CRC(ccc0475c) SHA1(7f6acfb0c851814b4d0187ce66b6294ea617d6f4) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt10lotc )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g10_#1", 0x0000000, 0x4000000, CRC(52590121) SHA1(5dce141833552ecc5a2b32f309ec1356a14f1019) )
|
||||
ROM_LOAD( "g10_#2", 0x4000000, 0x4000000, CRC(5af9da32) SHA1(fe9ab8d5c8d785f61c7ed8a5fca63be07db29611) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt16lotc )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g16_#1", 0x0000000, 0x4000000, CRC(40171bf5) SHA1(f576f7ca72d5972096ed98963d809838e34d6fb0) )
|
||||
ROM_LOAD( "g16_#2", 0x4000000, 0x4000000, CRC(6a00b2f1) SHA1(ed7a533b94520050ae6a9be9344d3a7587fa3ebb) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt18lotc )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "res01", 0x0000000, 0x4000000, CRC(54875320) SHA1(5876c70f4f22a576bdccbe641ea5e78f4b2d3f73) )
|
||||
ROM_LOAD( "res02", 0x4000000, 0x4000000, CRC(41af4a09) SHA1(cde677935ff454137f5b02c9d22bcec4759bb6fe) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt19lotc )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g_19_1.bin", 0x0000000, 0x4000000, CRC(4ea23b2b) SHA1(6ef7c82510fbc3ad871567314fec476077d393c7) )
|
||||
ROM_LOAD( "g_19_2.bin", 0x4000000, 0x4000000, CRC(b37c18b7) SHA1(3ee0e19f3f1671aa51b73436a990dc618a18642b) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt20lotc )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g 20.1.bin", 0x0000000, 0x4000000, CRC(a7f892b2) SHA1(eab445a24e04df6ea1c59941b6bbd30c7164970c) )
|
||||
ROM_LOAD( "g 20.2.bin", 0x4000000, 0x4000000, CRC(3053d4f8) SHA1(ba09a3580aef5fb13470ae5ab20c829eabba5ced) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt4lotca ) // zip was 'mk4.zip', might be something else (mulitkarot?) looks scrambled or bad
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gamt4lotca_read#1.bin", 0x0000000, 0x4000000, CRC(bb6f730d) SHA1(f4bd96b8b2ea8bd06961747f63584180f41f6a13) )
|
||||
ROM_LOAD( "gamt4lotca_read#2.bin", 0x4000000, 0x4000000, CRC(d33f55b4) SHA1(f3f822998977e485f0f7c2e7335602490fc13ba7) )
|
||||
ROM_END
|
||||
|
||||
|
||||
ROM_START( gamt4lotm )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g_4_1.bin", 0x0000000, 0x4000000, CRC(bec5e028) SHA1(091fd37883225373f65fcaafcc9e3be465a4fca0) )
|
||||
ROM_LOAD( "g_4_2.bin", 0x4000000, 0x4000000, CRC(83d03258) SHA1(8b6bdd8a112cd3e9245317b4311922ae9017899f) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt10lotm )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g_10_1.bin", 0x0000000, 0x4000000, CRC(8d48577f) SHA1(2dc2aeb5063bcf2f10ae4d08cd59eab649f6f3c0) )
|
||||
ROM_LOAD( "g_10_2.bin", 0x4000000, 0x4000000, CRC(986300e7) SHA1(b64e31375446bd0bdaab0f983d94a0e55a1c3e69) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt20lotm )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "g_20_1.bin", 0x0000000, 0x4000000, CRC(a914c063) SHA1(8a1b9cc69241eb2f533697e4e92e7bb8aee5724b) )
|
||||
ROM_LOAD( "g_20_2.bin", 0x4000000, 0x4000000, CRC(17ccd29c) SHA1(7e3f1ca89f660e8a018a7e8a9c240cc2bab36760) )
|
||||
ROM_END
|
||||
@ -1110,43 +1110,43 @@ ROM_END
|
||||
|
||||
|
||||
ROM_START( gamt1ent )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gr01.5_6-0.01.rom", 0x0000000, 0x4000000, CRC(d9a48096) SHA1(a636e1c59c3286e5b3f09c719fb3f80101c01c8e) )
|
||||
ROM_LOAD( "gr01.5_6-0.02.rom", 0x4000000, 0x4000000, CRC(fcdb6726) SHA1(1f5d079fa9456276ff45477b870e30c421b5200d) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt4ent )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "xg04.5_6-0.01.rom", 0x0000000, 0x4000000, CRC(802e908b) SHA1(1da8ff8c3b1afa996b5115fa83ed22f0f10432c9) )
|
||||
ROM_LOAD( "xg04.5_6-0.02.rom", 0x4000000, 0x4000000, CRC(30c4efc4) SHA1(919dc461ed75ccea4d33061044befb2caab0a8ed) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt6ent )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gr06.5_6-0.01.rom", 0x0000000, 0x4000000, CRC(58026e26) SHA1(b015ed2037d278167f23c1bb8676a0fe74f2face) )
|
||||
ROM_LOAD( "gr06.5_6-0.02.rom", 0x4000000, 0x4000000, CRC(c6b55386) SHA1(adc3a5771480cd515378355722ccb913863c61db) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt10ent )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gr10.5_6-5.01.rom", 0x0000000, 0x4000000, CRC(97e4085c) SHA1(20e5a9ce0c69609c04335f2b52ce79e6b13981c5) )
|
||||
ROM_LOAD( "gr10.5_6-5.02.rom", 0x4000000, 0x4000000, CRC(456cfc0b) SHA1(ecf30c602dc590ae75d2996b94d10bf7280a4423) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt18ent )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gr18.5_6-5.01.rom", 0x0000000, 0x4000000, CRC(59f3abba) SHA1(01c3edfa4f3fffb1919a74d50aa38a6ca46e7443) )
|
||||
ROM_LOAD( "gr18.5_6-5.02.rom", 0x4000000, 0x4000000, CRC(53fcb2c7) SHA1(217ffcc87c8d9c902c964b72bd09da5631abdab3) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt19ent )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gr19.5_6-5.01.rom", 0x0000000, 0x4000000, CRC(1276fb51) SHA1(5b4746929bc8703bb263d72c8fcaf82f51ca100f) )
|
||||
ROM_LOAD( "gr19.5_6-5.02.rom", 0x4000000, 0x4000000, CRC(298391c9) SHA1(5211f088869c61627c23f590871dd98385d9444b) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( gamt20ent )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "gr20.5_6-0.01.rom", 0x0000000, 0x4000000, CRC(c391c53d) SHA1(84cbec4e491e7661ebcd48959b9c5f6bbdfb8599) )
|
||||
ROM_LOAD( "gr20.5_6-0.02.rom", 0x4000000, 0x4000000, CRC(0dd0fea8) SHA1(39ed9083b374f1af13cc04671fad520e4e7223be) )
|
||||
ROM_END
|
||||
@ -1155,38 +1155,38 @@ ROM_END
|
||||
// Ancient Atlantis
|
||||
|
||||
ROM_START( ancienta )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "atlantis92_5.3-15", 0x0000, 0x2000000, CRC(f26a6465) SHA1(6586b5f2c5c36369371963259bd60abb6867fe2f) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( ancientaa )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "atlantis92_v5.4-25.rom", 0x0000, 0x2000000, CRC(c42388f5) SHA1(631e7d1498dc92a54e2979f3fdac936b4f9dc5b4) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( ancientab )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "atlantis94_v5.3-17.rom", 0x0000, 0x2000000, CRC(dd602a91) SHA1(8c33aa21336464b9192a680b0e6fb71bcc434a74) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( ancientac )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "atlantis96_5.3-17.rom", 0x0000, 0x2000000, CRC(b40e6228) SHA1(884f2b589da1091a5036fe82b884afbb2d1e1e21) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( ancientad )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "atlantis96-v5.4-16.rom", 0x0000, 0x2000000, CRC(cd9d4e3c) SHA1(8304fce99bc0787f0596cb8d4a80f9e737d37379) )
|
||||
ROM_END
|
||||
|
||||
// Bananas Go Bahamas
|
||||
ROM_START( bananas )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "banana92.rom", 0x0000, 0x2000000, CRC(52d3a923) SHA1(0aa0a2d3cafaa19a4672ac2d34d5442ce238e179) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( bananasa )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "banana94.rom", 0x0000, 0x2000000, CRC(ecdac445) SHA1(a50225a4d3208b622847ec22daaaff392c064f4f) )
|
||||
ROM_END
|
||||
|
||||
@ -1195,59 +1195,59 @@ ROM_END
|
||||
|
||||
|
||||
ROM_START( beebop )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "bbop92_5-3-15.rom", 0x0000, 0x2000000, CRC(6f631553) SHA1(77198b400c05cdb935243dc5efa9258f4bd84bea) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( beebopa )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "bbop92_v5.3-17.rom", 0x0000, 0x2000000, CRC(e9dd757d) SHA1(c360fa091675e0381d811d29d4437a31bd427341) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( beebopb )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "bbop92_5.4-17.rom", 0x0000, 0x2000000, CRC(cf664e8c) SHA1(679ce902be99776b6a82fb40d7e3ea27d9fb576c) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( beebopc )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "bbop94_5.3-17.rom", 0x0000, 0x2000000, CRC(989441e5) SHA1(b4a5cd4ff7daba87f94c0a22730ad84540d64678) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( beebopd )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "bbop96_5.3-17.rom", 0x0000, 0x2000000, CRC(f1fa095c) SHA1(fcc0be64a9b2258c8ee7f6521c49dcc75a9cbf63) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( beebope )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "bbop96-v5.4-20.rom", 0x0000, 0x2000000, CRC(cef0508a) SHA1(61603cd9ed4ef3196d8558a4c9b0af837b6e2f78) )
|
||||
ROM_END
|
||||
|
||||
|
||||
// Beetlemania
|
||||
ROM_START( beetlem )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "beetle90_5_0_21.rom", 0x0000, 0x1000000, CRC(fe6e8595) SHA1(ec590fd981ae8cb59a65cbfdf53dff6387abde94) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( beetlema )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "beetle92_5.3-17.rom", 0x0000, 0x1000000, CRC(a446abb0) SHA1(f57be7716df8af073de2b1e92278be7b3ee58141) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( beetlemb )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "beetle94_5.3-17.rom", 0x0000, 0x1000000, CRC(bf6df189) SHA1(a60becf235bf0f0dc5336cfc616e1f684e597a7e) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( beetlemc )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "beetle96_5.2-12.rom", 0x0000, 0x1000000, CRC(201eb20d) SHA1(d65db2bbad2546b6a15cb950bbc55bba9ed02688) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( beetlemd )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "beetle96_5.3-17.rom", 0x0000, 0x1000000, CRC(5f9433e0) SHA1(0b6d53a6feb31a28f30029cad3626a71c2d46c1f) )
|
||||
ROM_END
|
||||
|
||||
@ -1255,13 +1255,13 @@ ROM_END
|
||||
|
||||
// Bungee Monkey
|
||||
ROM_START( bungeem )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "bm92_1", 0x000000, 0x2000000, CRC(b7beae4d) SHA1(42f93a50daf8cf0e4a31ba5e72732d8c0fd611c9) )
|
||||
ROM_LOAD( "bm92_2", 0x2000000, 0x1000000, CRC(3598cdc8) SHA1(5cf8e8d6df031dac0f3894d2a9964640d65612e8) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( bungeema )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "bmonkey96#1_5.4-18.rom", 0x000000, 0x2000000, CRC(db3aeef4) SHA1(3edf6d46c92631e87922b7d8b36ffb7dd66b7068) )
|
||||
ROM_LOAD( "bmonkey96#2_5.4-18.rom", 0x2000000, 0x1000000, CRC(3598cdc8) SHA1(5cf8e8d6df031dac0f3894d2a9964640d65612e8) )
|
||||
ROM_END
|
||||
@ -1269,7 +1269,7 @@ ROM_END
|
||||
|
||||
// Book of Ra
|
||||
ROM_START( bookra )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "bookra94_v5.5-6_#1.bin", 0x0000000, 0x4000000, CRC(a1576b33) SHA1(6820759f11e1946cb2b3d89f3d7c72835e487ad1) )
|
||||
ROM_END
|
||||
|
||||
@ -1277,7 +1277,7 @@ ROM_END
|
||||
|
||||
// Banana Splash
|
||||
ROM_START( bsplash )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "bsplash92.rom", 0x0000, 0x2000000, CRC(5111ab61) SHA1(22b44c92ab7239c1f7c18b47aea2d832c1282b1b) )
|
||||
ROM_END
|
||||
|
||||
@ -1291,7 +1291,7 @@ ROM_START( chillicc )
|
||||
ROM_END
|
||||
|
||||
|
||||
// Columbus
|
||||
// Columbus
|
||||
|
||||
ROM_START( columbus )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
@ -1358,7 +1358,7 @@ ROM_START( eurogamea )
|
||||
ROM_END
|
||||
|
||||
|
||||
// First Class Traveller
|
||||
// First Class Traveller
|
||||
ROM_START( firstcl )
|
||||
ROM_REGION( 0x8000000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_LOAD( "fclass_96_5.5-10.rom", 0x0000, 0x2000000, CRC(7729061e) SHA1(1e0e3e7c4478edc5cdbf0d13a974e5b6eeef2d67) )
|
||||
|
Loading…
Reference in New Issue
Block a user