diff --git a/src/mame/arcade.lst b/src/mame/arcade.lst index e1f4b040e88..cc56ec02f1a 100644 --- a/src/mame/arcade.lst +++ b/src/mame/arcade.lst @@ -12181,6 +12181,7 @@ cfever1k // (c) 2000 High Video girotutt // (c) 2000 High Video nyjoker // grancapi // (c) 2000 High Video +galeone magicbom // (c) 2000 High Video // Sure games diff --git a/src/mame/drivers/highvdeo.cpp b/src/mame/drivers/highvdeo.cpp index 72be90d47f7..aad4ce7df35 100644 --- a/src/mame/drivers/highvdeo.cpp +++ b/src/mame/drivers/highvdeo.cpp @@ -1408,6 +1408,21 @@ ROM_START( girotutt ) ROM_LOAD( "t41.bin", 0x00000, 0x80000, CRC(6f694406) SHA1(ec8b8baba0ee1bfe8986ce978412ee4de06f1906) ) ROM_END + +ROM_START( galeone ) + ROM_REGION( 0x100000, "user1", 0 ) /* V30 Code */ + ROM_LOAD16_BYTE( "model.A8-vers.1.0.ic8", 0x00001, 0x40000, CRC(b9e1e7ce) SHA1(4e036285b26dc0a313e76259b7e67c8d55322c84) ) + ROM_RELOAD(0x80001,0x40000) + ROM_LOAD16_BYTE( "model.A7-vers.1.0.ic7", 0x00000, 0x40000, CRC(1940b738) SHA1(81e40de8df4dc838342bf966658110989a233731) ) + ROM_RELOAD(0x80000,0x40000) + + ROM_REGION( 0x040000, "boot_prg", 0 ) /* copy for program code */ + ROM_COPY( "user1", 0x040000, 0x000000, 0x40000 ) + + ROM_REGION( 0x080000, "oki", 0 ) /* M6376 Samples */ + ROM_LOAD( "model.GA-vers.1.ic25", 0x00000, 0x80000, CRC(4c2c2cc1) SHA1(20da29b2f1dd1f86ec23d9dbdaa9470878e900e2) ) +ROM_END + /* CPU @@ -1635,6 +1650,7 @@ GAMEL( 2000, cfever61, 0, tv_ncf, tv_ncf, driver_device, 0, ROT GAMEL( 2000, nyjoker, 0, nyjoker, nyjoker, driver_device, 0, ROT0, "High Video", "New York Joker", 0, layout_fashion ) GAMEL( 2000, cfever1k, 0, tv_tcf, tv_tcf, driver_device, 0, ROT0, "High Video", "Casino Fever 1k", 0, layout_fashion ) GAMEL( 2000, girotutt, 0, tv_tcf, tv_tcf, driver_device, 0, ROT0, "High Video", "GiroTutto", 0, layout_fashion ) +GAMEL( 2000, galeone, 0, nyjoker, nyjoker, driver_device, 0, ROT0, "San Remo Games", "Il Galeone", 0, layout_fashion ) GAMEL( 2000, ciclone, 0, ciclone, tv_tcf, highvdeo_state, ciclone, ROT0, "High Video", "Ciclone", 0, layout_fashion ) GAMEL( 2000, newmcard, 0, newmcard, tv_tcf, driver_device, 0, ROT0, "High Video", "New Magic Card", 0, layout_fashion ) GAMEL( 2000, brasil, 0, brasil, brasil, driver_device, 0, ROT0, "High Video", "Bra$il (Version 3)", 0, layout_fashion )