From c2330affb533313d9019601784c010a16bc9b8c3 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Fri, 8 Dec 2023 05:04:34 +1100 Subject: Tidy up various things. --- src/mame/konami/gticlub.cpp | 1 - src/mame/konami/k037122.cpp | 20 ++++++------- src/mame/nichibutsu/armedf.cpp | 10 +++++++ src/mame/nichibutsu/armedf.h | 8 ++++-- src/mame/nichibutsu/galivan.cpp | 2 +- src/mame/nichibutsu/galivan.h | 8 ++++-- src/mame/nichibutsu/hrdvd.cpp | 44 ++++++++++++++-------------- src/mame/nichibutsu/nbmj9195.cpp | 62 ++++++++++++++++++++-------------------- src/mame/nichibutsu/niyanpai.cpp | 14 ++++----- 9 files changed, 92 insertions(+), 77 deletions(-) diff --git a/src/mame/konami/gticlub.cpp b/src/mame/konami/gticlub.cpp index 9969fa88bfd..dec510aab88 100644 --- a/src/mame/konami/gticlub.cpp +++ b/src/mame/konami/gticlub.cpp @@ -384,7 +384,6 @@ private: void hangplt_map(address_map &map); void hangplt_sharc0_map(address_map &map); void hangplt_sharc1_map(address_map &map); - }; diff --git a/src/mame/konami/k037122.cpp b/src/mame/konami/k037122.cpp index 8292d27be19..8b428ff306c 100644 --- a/src/mame/konami/k037122.cpp +++ b/src/mame/konami/k037122.cpp @@ -96,16 +96,14 @@ k037122_device::k037122_device(const machine_config &mconfig, const char *tag, d void k037122_device::device_start() { - static const gfx_layout k037122_char_layout = - { - 8, 8, - K037122_NUM_TILES, - 8, - { 0,1,2,3,4,5,6,7 }, - { 1*16, 0*16, 3*16, 2*16, 5*16, 4*16, 7*16, 6*16 }, - { 0*128, 1*128, 2*128, 3*128, 4*128, 5*128, 6*128, 7*128 }, - 8*128 - }; + static const gfx_layout k037122_char_layout = { + 8, 8, + K037122_NUM_TILES, + 8, + { 0,1,2,3,4,5,6,7 }, + { 1*16, 0*16, 3*16, 2*16, 5*16, 4*16, 7*16, 6*16 }, + { 0*128, 1*128, 2*128, 3*128, 4*128, 5*128, 6*128, 7*128 }, + 8*128 }; m_char_ram = make_unique_clear(0x200000 / 4); m_tile_ram = make_unique_clear(0x20000 / 4); @@ -117,7 +115,7 @@ void k037122_device::device_start() m_tilemap_128->set_transparent_pen(0); m_tilemap_256->set_transparent_pen(0); - set_gfx(0,std::make_unique(this, k037122_char_layout, (uint8_t*)m_char_ram.get(), 0, entries() / 16, 0)); + set_gfx(0 ,std::make_unique(this, k037122_char_layout, (uint8_t *)m_char_ram.get(), 0, entries() / 16, 0)); save_pointer(NAME(m_reg), 0x400 / 4); save_pointer(NAME(m_char_ram), 0x200000 / 4); diff --git a/src/mame/nichibutsu/armedf.cpp b/src/mame/nichibutsu/armedf.cpp index cdc46c25127..75e585e32aa 100644 --- a/src/mame/nichibutsu/armedf.cpp +++ b/src/mame/nichibutsu/armedf.cpp @@ -1148,6 +1148,7 @@ void armedf_state::sound_config_common(machine_config &config) // common amongst void armedf_state::sound_config(machine_config &config) // 3526, used on almost all non-bootlegs { sound_config_common(config); + m_audiocpu->set_addrmap(AS_PROGRAM, &armedf_state::sound_map); m_audiocpu->set_addrmap(AS_IO, &armedf_state::sound_3526_portmap); @@ -1157,6 +1158,7 @@ void armedf_state::sound_config(machine_config &config) // 3526, used on almost void armedf_state::sound_config_3812(machine_config &config) // 3812, used on bootlegs and skyrobo/bigfghtr { sound_config_common(config); + m_audiocpu->set_addrmap(AS_PROGRAM, &armedf_state::sound_map); m_audiocpu->set_addrmap(AS_IO, &armedf_state::sound_portmap); @@ -1166,6 +1168,7 @@ void armedf_state::sound_config_3812(machine_config &config) // 3812, used on bo void armedf_state::sound_config_legion(machine_config &config) // 3526, used on non-bootleg legion and cclimbr2 { sound_config_common(config); + m_audiocpu->set_addrmap(AS_PROGRAM, &armedf_state::cclimbr2_soundmap); m_audiocpu->set_addrmap(AS_IO, &armedf_state::sound_3526_portmap); @@ -1175,6 +1178,7 @@ void armedf_state::sound_config_legion(machine_config &config) // 3526, used on void armedf_state::sound_config_legion_3812(machine_config &config) // 3812, used on legion bootlegs { sound_config_common(config); + m_audiocpu->set_addrmap(AS_PROGRAM, &armedf_state::cclimbr2_soundmap); m_audiocpu->set_addrmap(AS_IO, &armedf_state::sound_portmap); @@ -1191,6 +1195,7 @@ void armedf_state::terraf(machine_config &config) NB1414M4(config, m_nb1414m4, 0); video_config(config, 12, 8, 248); + MCFG_VIDEO_START_OVERRIDE(armedf_state,terraf) /* sound hardware */ @@ -1208,6 +1213,7 @@ void armedf_state::terrafjb(machine_config &config) m_extra->set_addrmap(AS_IO, &armedf_state::terrafjb_extraz80_portmap); video_config(config, 12, 8, 248); + MCFG_VIDEO_START_OVERRIDE(armedf_state,terraf) /* sound hardware */ @@ -1244,6 +1250,7 @@ void armedf_state::armedf(machine_config &config) m_maincpu->set_vblank_int("screen", FUNC(armedf_state::irq1_line_assert)); video_config(config, 12, 8, 248); + MCFG_VIDEO_START_OVERRIDE(armedf_state,armedf) /* sound hardware */ @@ -1259,6 +1266,7 @@ void armedf_state::cclimbr2(machine_config &config) NB1414M4(config, m_nb1414m4, 0); video_config(config, 14, 16, 240); + MCFG_VIDEO_START_OVERRIDE(armedf_state,terraf) /* sound hardware */ @@ -1271,6 +1279,7 @@ void armedf_state::legion_common(machine_config &config) m_maincpu->set_vblank_int("screen", FUNC(armedf_state::irq2_line_assert)); video_config(config, 14, 16, 240); + MCFG_VIDEO_START_OVERRIDE(armedf_state,terraf) } @@ -1315,6 +1324,7 @@ void bigfghtr_state::bigfghtr(machine_config &config) mcu.port_in_cb<1>().set_constant(0xdf); // bit 5: bus contention related? video_config(config, 12, 8, 248); + MCFG_VIDEO_START_OVERRIDE(bigfghtr_state,armedf) sound_config_3812(config); diff --git a/src/mame/nichibutsu/armedf.h b/src/mame/nichibutsu/armedf.h index 9f3265e4d0e..e2b04bf03b3 100644 --- a/src/mame/nichibutsu/armedf.h +++ b/src/mame/nichibutsu/armedf.h @@ -6,13 +6,16 @@ #pragma once #include "nb1414m4.h" + #include "machine/gen_latch.h" -#include "video/bufsprite.h" #include "sound/flt_biquad.h" +#include "video/bufsprite.h" + #include "screen.h" #include "emupal.h" #include "tilemap.h" + class armedf_state : public driver_device { public: @@ -45,7 +48,6 @@ public: void terraf(machine_config &config); void terrafb(machine_config &config); - void legion_common(machine_config &config); void legion(machine_config &config); void legionjb(machine_config &config); void legionjb2(machine_config &config); @@ -57,6 +59,8 @@ public: protected: virtual void machine_start() override; virtual void machine_reset() override; + + void legion_common(machine_config &config); void video_config(machine_config &config, int hchar_start, int vstart, int vend); void sound_config_common(machine_config &config); void sound_config(machine_config &config); diff --git a/src/mame/nichibutsu/galivan.cpp b/src/mame/nichibutsu/galivan.cpp index ea3f5d6b9d7..e85d678e3f4 100644 --- a/src/mame/nichibutsu/galivan.cpp +++ b/src/mame/nichibutsu/galivan.cpp @@ -1293,7 +1293,7 @@ GAME( 1985, galivan3, galivan, galivan, galivan, galivan_state, empty_init, GAME( 1986, dangar, 0, galivan, dangar, galivan_state, empty_init, ROT270, "Nichibutsu", "Ufo Robo Dangar (4/09/1987)", MACHINE_SUPPORTS_SAVE ) // GV-1412-I and GV-1412-II pcbs GAME( 1986, dangara, dangar, galivan, dangar2, galivan_state, empty_init, ROT270, "Nichibutsu", "Ufo Robo Dangar (12/1/1986)", MACHINE_SUPPORTS_SAVE ) GAME( 1986, dangarj, dangar, dangarj, dangar2, dangarj_state, empty_init, ROT270, "Nichibutsu", "Ufo Robo Dangar (9/26/1986, Japan)", MACHINE_SUPPORTS_SAVE ) -GAME( 1986, dangarb, dangar, galivan, dangar2, galivan_state, empty_init, ROT270, "bootleg", "Ufo Robo Dangar (9/26/1986, bootleg set 1)", MACHINE_SUPPORTS_SAVE ) // checks protection like dangarj but check readback is patched at 0x9d58 (also checks i/o port 0xc0?) +GAME( 1986, dangarb, dangar, galivan, dangar2, galivan_state, empty_init, ROT270, "bootleg", "Ufo Robo Dangar (9/26/1986, bootleg set 1)", MACHINE_SUPPORTS_SAVE ) // checks protection like dangarj but check readback is patched at 0x9d58 (also checks I/O port 0xc0?) GAME( 1986, dangarbt, dangar, galivan, dangarb, galivan_state, empty_init, ROT270, "bootleg", "Ufo Robo Dangar (9/26/1986, bootleg set 2)", MACHINE_SUPPORTS_SAVE ) // directly patched at entry point 0x9d44 GAME( 1986, ninjemak, 0, ninjemak, ninjemak, galivan_state, empty_init, ROT270, "Nichibutsu", "Ninja Emaki (US)", MACHINE_SUPPORTS_SAVE|MACHINE_UNEMULATED_PROTECTION ) GAME( 1986, youma, ninjemak, ninjemak, ninjemak, galivan_state, empty_init, ROT270, "Nichibutsu", "Youma Ninpou Chou (Japan)", MACHINE_SUPPORTS_SAVE|MACHINE_UNEMULATED_PROTECTION ) diff --git a/src/mame/nichibutsu/galivan.h b/src/mame/nichibutsu/galivan.h index 8e14a503cd4..59a48dc0bf2 100644 --- a/src/mame/nichibutsu/galivan.h +++ b/src/mame/nichibutsu/galivan.h @@ -12,13 +12,16 @@ #include "nb1412m2.h" #include "nb1414m4.h" + #include "machine/gen_latch.h" -#include "sound/flt_biquad.h" #include "video/bufsprite.h" +#include "sound/flt_biquad.h" + #include "screen.h" #include "emupal.h" #include "tilemap.h" + class galivan_state : public driver_device { public: @@ -38,7 +41,6 @@ public: , m_rombank(*this, "rombank") { } - void galivan_common(machine_config &config); void galivan(machine_config &config); void ninjemak(machine_config &config); void youmab(machine_config &config); @@ -47,6 +49,8 @@ public: protected: void io_map(address_map &map); + + void galivan_common(machine_config &config); void video_config(machine_config &config); required_device m_maincpu; diff --git a/src/mame/nichibutsu/hrdvd.cpp b/src/mame/nichibutsu/hrdvd.cpp index e2a92cb14b4..6ffd06d4c38 100644 --- a/src/mame/nichibutsu/hrdvd.cpp +++ b/src/mame/nichibutsu/hrdvd.cpp @@ -552,7 +552,7 @@ ROM_START( nichidvd ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", ROMREGION_ERASE00 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", ROMREGION_ERASE00 ) // z80 ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -568,7 +568,7 @@ ROM_START( csplayh1 ) ROM_REGION( 0x20000, "subcpu", 0 ) // h8, cd-rom player ROM_LOAD16_WORD_SWAP( "u2", 0x00000, 0x20000, NO_DUMP ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "1.bin", 0x000000, 0x020000, CRC(8296d67f) SHA1(20eb944a2bd27980e1aaf60ca544059e84129760) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -587,7 +587,7 @@ ROM_START( mjgalpri ) ROM_LOAD16_BYTE( "2.ic3", 0x000000, 0x020000, CRC(e8427076) SHA1(9b449599ffac2b67a29fac11d1e85218668d805d) ) ROM_LOAD16_BYTE( "1.ic2", 0x000001, 0x020000, CRC(653fcc14) SHA1(6231ec5f45a9f5e587dcd00ff85f9bbfae7364ab) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(7b9b1887) SHA1(1393a1d79f3cc7ab68275791af4ec16e825056df) ) DVD_BIOS @@ -608,7 +608,7 @@ ROM_START( sengomjk ) ROM_LOAD16_BYTE( "2.ic3", 0x000000, 0x020000, CRC(a202bf13) SHA1(01e15e7577f6ac6a90b7ab30f402def211360d4d) ) ROM_LOAD16_BYTE( "1.ic2", 0x000001, 0x020000, CRC(98d4979a) SHA1(477361ec183674220e282fed8bfce098b0f75873) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(c0bf69c6) SHA1(dd06ec9b3232f025de2c87765b88cb101eab47f5) ) DVD_BIOS @@ -631,7 +631,7 @@ ROM_START( junai ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x00000, 0x20000, CRC(a0472ea5) SHA1(0fd04941ff595cffe64357f3a1a9dc1170db8703) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -650,7 +650,7 @@ ROM_START( csplayh5 ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x00000, 0x20000, CRC(0b920806) SHA1(95f50ebfb296ba29aaa8079a41f5362cb9e879cc) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -669,7 +669,7 @@ ROM_START( junai2 ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x00000, 0x20000, CRC(a4b07757) SHA1(5010f28d7a80af0cc3f4fd135f777950fb2cf679) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -692,7 +692,7 @@ ROM_START( mogitate ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(7927c1d6) SHA1(15f0c0051124e7b7667eb721dd12938333b31899) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -713,7 +713,7 @@ ROM_START( mjmania ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(f0c3bb11) SHA1(691a0ff53a9417e69051e9e2bdee7500bc6a746b) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -734,7 +734,7 @@ ROM_START( renaimj ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x00000, 0x20000, CRC(614d17b9) SHA1(d6fb4441f55902c2b89b4bec53aae5311d81f07b) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -756,7 +756,7 @@ ROM_START( bikiniko ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x00000, 0x20000, CRC(4a2142d6) SHA1(3a762f7b7cccdb6715b5f59524b04b12694fc130) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -775,7 +775,7 @@ ROM_START( csplayh6 ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x00000, 0x20000, CRC(3ce03f2d) SHA1(5ccdcac8bad25b4f680ed7a2074575711c25af41) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -797,7 +797,7 @@ ROM_START( thenanpa ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(f44c4095) SHA1(d43e464bd6d614c34791445f8fd4af2f62a4dfc2) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -818,7 +818,7 @@ ROM_START( pokoachu ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(9d344bad) SHA1(276c8066a2b5090edf6ba00843b7a9496c90f99f) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -839,7 +839,7 @@ ROM_START( csplayh7 ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(5905b199) SHA1(9155455bc21d23d439c4732549ff1143ee17b9d3) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -860,7 +860,7 @@ ROM_START( aimode ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(e6404950) SHA1(bb179c27ce65f7dc58d2aeed4710347e7953e11c) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -881,7 +881,7 @@ ROM_START( fuudol ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(f6442026) SHA1(f49ddeeeaf6fffdccea9ba73bce3ca60c07a7647) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -902,7 +902,7 @@ ROM_START( nuretemi ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(655ec499) SHA1(5cea38e998edc7833b9a644930daecd99933c277) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -923,7 +923,7 @@ ROM_START( tsuwaku ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(8451b9a9) SHA1(4e61c4b5ea7e91b53c97bd060b41466ba5005fd0) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -944,7 +944,7 @@ ROM_START( torarech ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(bd785d10) SHA1(ceb91c0f13eafabb8d48384857af6fc555d48951) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -965,7 +965,7 @@ ROM_START( nichisel ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(f94981fd) SHA1(84dae027f10717a084016310cd245bb4c2ee6a56) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs @@ -986,7 +986,7 @@ ROM_START( konhaji ) DVD_BIOS - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) // z80 + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) // z80 ROM_LOAD( "11.ic51", 0x000000, 0x020000, CRC(d1ba05d6) SHA1(8d29cdbf00946e06e92225eb260a694d17d7b8d4) ) ROM_REGION16_BE( 0x400000, "blit_gfx", ROMREGION_ERASEFF ) // blitter based gfxs diff --git a/src/mame/nichibutsu/nbmj9195.cpp b/src/mame/nichibutsu/nbmj9195.cpp index 608cbe1841e..f73909082e6 100644 --- a/src/mame/nichibutsu/nbmj9195.cpp +++ b/src/mame/nichibutsu/nbmj9195.cpp @@ -2417,7 +2417,7 @@ ROM_START( mjuraden ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.7c", 0x00000, 0x10000, CRC(3b142791) SHA1(b5cf9e2c12967ad4ba035b7480419c91e412c753) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.13e", 0x00000, 0x20000, CRC(3a230c22) SHA1(13aa18dcd320039bca2530c62d1033e4e3335697) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2433,7 +2433,7 @@ ROM_START( koinomp ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.7c", 0x00000, 0x10000, CRC(e4d626fc) SHA1(46bd9b494c7de4eae3e5dfb3bb2ce897ced0d6da) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.13e", 0x00000, 0x20000, CRC(4a5c814b) SHA1(8d06da85dd7f6a10e3cc81f0bb7bb60d07fb02a2) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2451,7 +2451,7 @@ ROM_START( pachiten ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "pctn_01.bin", 0x00000, 0x10000, CRC(c033d7c6) SHA1(067cdff10819c8653e92981a5becdb73e52bbd70) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "pctn_02.bin", 0x00000, 0x20000, CRC(fe2f0dfa) SHA1(76a0ac1499bde3a05915711d882db132e720208e) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2468,7 +2468,7 @@ ROM_START( patimono ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.7c", 0x00000, 0x10000, CRC(e4860829) SHA1(192d89b7915153dea8b7a53e1756be83a07f78ec) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.13e", 0x00000, 0x20000, CRC(30770363) SHA1(a6af371ca833878361b4a15857fa216272650a19) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2485,7 +2485,7 @@ ROM_START( janbari ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.7c", 0x00000, 0x10000, CRC(f82d26a9) SHA1(37f7de6e44254ae58c4589b400d0bd6c814fbfa7) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.13e", 0x00000, 0x20000, CRC(30770363) SHA1(a6af371ca833878361b4a15857fa216272650a19) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2502,7 +2502,7 @@ ROM_START( mjanbari ) // Medal Series No. 136N, according to dip sheet ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "11.7ca", 0x00000, 0x10000, CRC(1edde2ef) SHA1(fe0c23971cc25c8e2898ac697ce5111fda482f41) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.13e", 0x00000, 0x20000, CRC(30770363) SHA1(a6af371ca833878361b4a15857fa216272650a19) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2519,7 +2519,7 @@ ROM_START( mmehyou ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.7c", 0x00000, 0x10000, CRC(29d51130) SHA1(266b63c9efa7aca9725173d30bccc39527bc7b55) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.13e", 0x00000, 0x20000, CRC(d193a2e1) SHA1(36e5e7c3b35daac96bb48883db0ae6ebd194acf3) ) ROM_REGION( 0x260000, "blitter", 0 ) @@ -2536,7 +2536,7 @@ ROM_START( ultramhm ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.7c", 0x00000, 0x10000, CRC(152811b1) SHA1(6f020848252f95468890c9c35dea3fb211caa9c9) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.12e", 0x00000, 0x20000, CRC(a26ba18b) SHA1(593abfda2e082e1dbea37dc8840bd4d63014cde6) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2550,7 +2550,7 @@ ROM_START( gal10ren ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "gl10_01.bin", 0x00000, 0x10000, CRC(f63f81b4) SHA1(a805e472f01f2a6d4acb17770e2490d67c0b51ee) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "gl10_02.bin", 0x00000, 0x20000, CRC(1317b788) SHA1(0e12057c2849e733d88ca094d5382207cd34d79d) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2568,7 +2568,7 @@ ROM_START( renaiclb ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.7c", 0x00000, 0x10000, CRC(82f99130) SHA1(afb19d716b71c10ca3e8c014be9e9a6105aa660b) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.12e", 0x00000, 0x20000, CRC(9f6204a1) SHA1(8d20e0893bb8ceaf8f5076fb0ade24c040f4fc82) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2583,7 +2583,7 @@ ROM_START( mjlaman ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "mlmn_01.bin", 0x00000, 0x10000, CRC(5974740d) SHA1(1856ccb91abcfbab53bbd23d41ecfe5a3ffa363d) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "mlmn_02.bin", 0x00000, 0x20000, CRC(90adede6) SHA1(ec08b095b894807a6f6d774a21e1e459f1d022b5) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2597,7 +2597,7 @@ ROM_START( mkeibaou ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "mkbo_01.bin", 0x00000, 0x10000, CRC(2e37b1fb) SHA1(e4fbfbe20fbc0ea204dc91ee0d133c9bd5bbefb5) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "mkbo_02.bin", 0x00000, 0x20000, CRC(c9a3109e) SHA1(615289fb9a7e11ceaa774eef8192ca7245e23449) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2614,7 +2614,7 @@ ROM_START( sailorws ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "slws_01.bin", 0x00000, 0x10000, CRC(33191e48) SHA1(55481f09469b239d7eeafc6e53f7bb86f499fae7) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "slws_02.bin", 0x00000, 0x20000, CRC(582f3f29) SHA1(de8f716e069ce0137f610746e477bb7cc841fc72) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2632,7 +2632,7 @@ ROM_START( sailorwa ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "01.bin", 0x00000, 0x10000, CRC(f3da8f19) SHA1(20f2d09e3178c19d3e64144d5785c0aa5a7de27d) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "slws_02.bin", 0x00000, 0x20000, CRC(582f3f29) SHA1(de8f716e069ce0137f610746e477bb7cc841fc72) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2650,7 +2650,7 @@ ROM_START( sailorwr ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "slwr_01.bin", 0x00000, 0x10000, CRC(a0d65cd5) SHA1(3c617231309fd6919fd63c95ec0e3540c4b48a76) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "slws_02.bin", 0x00000, 0x20000, CRC(582f3f29) SHA1(de8f716e069ce0137f610746e477bb7cc841fc72) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2668,7 +2668,7 @@ ROM_START( psailor1 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "pts1_01.bin", 0x00000, 0x10000, CRC(a93dab87) SHA1(c4172bd8ed485b80c4fb7a617d8dc017b4fa01a1) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "pts1_02.bin", 0x00000, 0x20000, CRC(0bcc1a89) SHA1(386a979e9a482061fadb4c0bcf2808ad58caa0e6) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2686,7 +2686,7 @@ ROM_START( psailor2 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "pts2_01.bin", 0x00000, 0x10000, CRC(5a94677f) SHA1(ce8c4f99b619ba72fd3c53e512a83688c3dd54a4) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "pts2_02.bin", 0x00000, 0x20000, CRC(3432de51) SHA1(affd2c1207502a305ea350e20f9adaf6aadfcaec) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2704,7 +2704,7 @@ ROM_START( otatidai ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "otcd_01.bin", 0x00000, 0x10000, CRC(a68acf90) SHA1(85d8d7d37fbdd334a5f489ce59dd630383c4e73c) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "otcd_02.bin", 0x00000, 0x20000, CRC(30ed0e78) SHA1(c04185d7e236aeafac5ee5882bfe1ddbf12ba430) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2722,7 +2722,7 @@ ROM_START( wcatcher ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.7c", 0x00000, 0x10000, CRC(1f20adc8) SHA1(79e9fa0a97b1a7a26d03f6fe007ea7aca08da854) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.12e", 0x00000, 0x20000, CRC(470eacb2) SHA1(8054a3e8680133d56715a87e5fc6c6ca0b6b3b16) ) ROM_REGION( 0x280000, "blitter", 0 ) @@ -2737,7 +2737,7 @@ ROM_START( yosimoto ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.7c", 0x00000, 0x10000, CRC(6059f773) SHA1(d1a8910463fc39a21dcbb80a220238e9980805a1) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.12e", 0x00000, 0x20000, CRC(cdc363b3) SHA1(72a43d8654f194a81ddaf4e51394817139dc916a) ) ROM_REGION( 0x300000, "blitter", 0 ) @@ -2753,7 +2753,7 @@ ROM_START( yosimotm ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.7c", 0x00000, 0x10000, CRC(d156b07d) SHA1(8dcf2d8ac60920dc7ea286d4b91399ed2db05a3b) ) // sldh - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.12e", 0x00000, 0x20000, CRC(e2d84085) SHA1(890b4d4a02030253837b67e8232293dce30d7ca2) ) // sldh ROM_REGION( 0x300000, "blitter", 0 ) @@ -2769,7 +2769,7 @@ ROM_START( ngpgal ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "ngpg_01.bin", 0x00000, 0x10000, CRC(c766378b) SHA1(b221908eb14ebf5c87ae896c3c27d261b26b5146) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "ngpg_02.bin", 0x00000, 0x20000, CRC(d193a2e1) SHA1(36e5e7c3b35daac96bb48883db0ae6ebd194acf3) ) ROM_REGION( 0x280000, "blitter", 0 ) @@ -2794,7 +2794,7 @@ ROM_START( mjgottsu ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "mgek_01.bin", 0x00000, 0x10000, CRC(949676d7) SHA1(2dfa4576c126e1b4f1d4c9ceb2c89905a700f20c) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.8d", 0x00000, 0x20000, CRC(52c6a1a1) SHA1(8beb94870b890c05e78f95dba4c7e11f6300542b) ) ROM_REGION( 0x280000, "blitter", 0 ) @@ -2820,7 +2820,7 @@ ROM_START( bakuhatu ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.4c", 0x00000, 0x10000, CRC(687900ed) SHA1(6cb950e72e4ff62cdee7343f612569f4fccfde46) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.8d", 0x00000, 0x20000, CRC(52c6a1a1) SHA1(8beb94870b890c05e78f95dba4c7e11f6300542b) ) ROM_REGION( 0x280000, "blitter", 0 ) @@ -2846,7 +2846,7 @@ ROM_START( cmehyou ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "cmhy_01.bin", 0x00000, 0x10000, CRC(436dfa6c) SHA1(92882cbc8c3d607045b514faed6bb34303d421d7) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "cmhy_02.bin", 0x00000, 0x20000, CRC(d193a2e1) SHA1(36e5e7c3b35daac96bb48883db0ae6ebd194acf3) ) ROM_REGION( 0x280000, "blitter", 0 ) @@ -2873,7 +2873,7 @@ ROM_START( mjkoiura ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "mjku_01.bin", 0x00000, 0x10000, CRC(ef9ae73e) SHA1(2e7fe8f55bc06b842d74efd246df04be647d17e3) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "mjku_02.bin", 0x00000, 0x20000, CRC(3a230c22) SHA1(13aa18dcd320039bca2530c62d1033e4e3335697) ) ROM_REGION( 0x280000, "blitter", 0 ) @@ -2901,7 +2901,7 @@ ROM_START( mkoiuraa ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.7c", 0x00000, 0x10000, CRC(06149bc0) SHA1(5d3f4c7a7dfc12ae08939b45d91553d45c6f1d70) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.13e", 0x00000, 0x20000, CRC(3a230c22) SHA1(13aa18dcd320039bca2530c62d1033e4e3335697) ) ROM_REGION( 0x280000, "blitter", 0 ) @@ -2917,7 +2917,7 @@ ROM_START( mscoutm ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "mscm_01.bin", 0x00000, 0x10000, CRC(9840ccd8) SHA1(b416606508abddbed50c7ae840e44067fc27d531) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "mscm_02.bin", 0x00000, 0x20000, CRC(4d2cbcab) SHA1(ad5c9257d32129c473e7f7124f84e381e35bbaa3) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2935,7 +2935,7 @@ ROM_START( imekura ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.103", 0x00000, 0x10000, CRC(3491083b) SHA1(db73baecb757261d40282b99c87e230b4654fca9) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.804", 0x00000, 0x20000, CRC(1ef3e8f0) SHA1(1356047317481dfb28b05707abf039df3dec8e77) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2953,7 +2953,7 @@ ROM_START( mjegolf ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "metg_01.bin", 0x00000, 0x10000, CRC(1d7c2fcc) SHA1(cc05036ca8ff0fa5c676049c705ec19b39eb433a) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "metg_02.bin", 0x00000, 0x20000, CRC(99f419cf) SHA1(496e5c0afcef9fd7707d87d3588e3a83d7d7f871) ) ROM_REGION( 0x400000, "blitter", 0 ) @@ -2971,7 +2971,7 @@ ROM_START( jituroku ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.7c", 0x00000, 0x10000, CRC(fb483b47) SHA1(2bde43e717274224de1723e25e1259ab654d52fc) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) ROM_LOAD( "2.12e", 0x00000, 0x20000, CRC(e3579df2) SHA1(ede5a288ee58410550816b3c5f204e178a4d4cd0) ) ROM_REGION( 0x400000, "blitter", 0 ) diff --git a/src/mame/nichibutsu/niyanpai.cpp b/src/mame/nichibutsu/niyanpai.cpp index 53e6f14f1ca..eb34517cfda 100644 --- a/src/mame/nichibutsu/niyanpai.cpp +++ b/src/mame/nichibutsu/niyanpai.cpp @@ -44,13 +44,13 @@ Memo: void niyanpai_state::init_niyanpai() { - //uint8_t *SNDROM = memregion(":nichisnd:audiorom")->base(); + //uint8_t *SNDROM = memregion("nichisnd:audiorom")->base(); // sound program patch //SNDROM[0x0213] = 0x00; // DI -> NOP // initialize sound rom bank - //membank("soundbank")->configure_entries(0, 3, memregion(":nichisnd:audiorom")->base() + 0x8000, 0x8000); + //membank("soundbank")->configure_entries(0, 3, memregion("nichisnd:audiorom")->base() + 0x8000, 0x8000); //membank("soundbank")->set_entry(0); // initialize out coin flag (musobana) @@ -731,7 +731,7 @@ ROM_START( niyanpai ) ROM_LOAD16_BYTE( "npai_01.bin", 0x00000, 0x20000, CRC(a904e8a1) SHA1(77865d7b48cac96af1e3cac4a702f7de4b5ee82b) ) ROM_LOAD16_BYTE( "npai_02.bin", 0x00001, 0x20000, CRC(244f9d6f) SHA1(afde18f32c4879a66c0707671d783c21c54cffa4) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) /* TMPZ84C011 sound program */ + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) /* TMPZ84C011 sound program */ ROM_LOAD( "npai_03.bin", 0x000000, 0x20000, CRC(d154306b) SHA1(3375568a6d387d850b8996b8bad3d0220de13993) ) ROM_REGION( 0x400000, "gfx1", 0 ) /* gfx */ @@ -750,7 +750,7 @@ ROM_START( musobana ) ROM_LOAD16_BYTE( "1.209", 0x00000, 0x20000, CRC(574929a1) SHA1(70ea96c3aa8a3512176b719de0928470541d85cb) ) ROM_LOAD16_BYTE( "2.208", 0x00001, 0x20000, CRC(12734fda) SHA1(46241efe4266ad6426eb31db757ae4852c70c25d) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) /* TMPZ84C011 sound program */ + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) /* TMPZ84C011 sound program */ ROM_LOAD( "3.804", 0x000000, 0x20000, CRC(0be8f2ce) SHA1(c1ee8907c03f615fbc42654a3c37387714761560) ) ROM_REGION( 0x500000, "gfx1", 0 ) /* gfx */ @@ -771,7 +771,7 @@ ROM_START( 4psimasy ) ROM_LOAD16_BYTE( "1.209", 0x00000, 0x20000, CRC(28dda353) SHA1(3d4738189a7b8b8b0434b3e58550572c3ce74b42) ) ROM_LOAD16_BYTE( "2.208", 0x00001, 0x20000, CRC(3679c9fb) SHA1(74a940c3c95723680a63a281f194ef4bbe3dc58a) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) /* TMPZ84C011 sound program */ + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) /* TMPZ84C011 sound program */ ROM_LOAD( "3.804", 0x000000, 0x20000, CRC(bd644726) SHA1(1f8e12a081657d6e1dd9c896056d1ffd977dfe95) ) ROM_REGION( 0x400000, "gfx1", 0 ) /* gfx */ @@ -790,7 +790,7 @@ ROM_START( mhhonban ) ROM_LOAD16_BYTE( "u209.bin", 0x00000, 0x20000, CRC(121c861f) SHA1(70a6b695998904dccb8791ea5d9acbf7484bd812) ) ROM_LOAD16_BYTE( "u208.bin", 0x00001, 0x20000, CRC(d6712d0b) SHA1(a384c8f508ec6885bccb989d150cfd7f36a6898d) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) /* TMPZ84C011 sound program */ + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) /* TMPZ84C011 sound program */ ROM_LOAD( "u804.bin", 0x000000, 0x20000, CRC(48407507) SHA1(afd24d16d487fd2b6548d967e2f1ae122e2633a2) ) ROM_REGION( 0x300000, "gfx1", 0 ) /* gfx */ @@ -807,7 +807,7 @@ ROM_START( zokumahj ) ROM_LOAD16_BYTE( "1.bin", 0x00000, 0x20000, CRC(53ca34a9) SHA1(5a1e2660442665efd529ec6c98ffc994c6103419) ) ROM_LOAD16_BYTE( "2.bin", 0x00001, 0x20000, CRC(474f9303) SHA1(4b03e3b6b6ee864dfcce3978f19bf329e39b3fe7) ) - ROM_REGION( 0x20000, ":nichisnd:audiorom", 0 ) /* TMPZ84C011 sound program */ + ROM_REGION( 0x20000, "nichisnd:audiorom", 0 ) /* TMPZ84C011 sound program */ ROM_LOAD( "3.bin", 0x000000, 0x20000, CRC(48407507) SHA1(afd24d16d487fd2b6548d967e2f1ae122e2633a2) ) ROM_REGION( 0x300000, "gfx1", 0 ) /* gfx */ -- cgit v1.2.3