From 2e4fbfed5ed97feb1d0176921be652529b35dcf7 Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Mon, 10 Jun 2024 07:40:17 +0200 Subject: tg100: There is no internal rom (empty mask variant of the h8/520, wired for mode 3 which is rom disabled) --- src/mame/yamaha/tg100.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/yamaha/tg100.cpp b/src/mame/yamaha/tg100.cpp index c9ac46b00e3..192dc77322e 100644 --- a/src/mame/yamaha/tg100.cpp +++ b/src/mame/yamaha/tg100.cpp @@ -59,6 +59,7 @@ private: void tg100_state::tg100_map(address_map &map) { map(0x00000000, 0x0007ffff).ram(); /* gate array stuff */ + map(0x00000000, 0x000000ff).rom().region("prgrom", 0x00000); map(0x00080000, 0x0009ffff).rom().region("prgrom", 0x00000); } @@ -90,7 +91,6 @@ ROM_START( tg100 ) ROM_LOAD( "xk731c0.ic4", 0x00000, 0x20000, CRC(8fb6139c) SHA1(483103a2ffc63a90a2086c597baa2b2745c3a1c2) ) ROM_REGION(0x4000, "maincpu", 0) - ROM_LOAD( "hd6435208a00p.bin", 0x0000, 0x4000, NO_DUMP ) ROM_COPY( "prgrom", 0x0000, 0x0000, 0x4000 ) ROM_REGION(0x200000, "ymw258", 0) -- cgit v1.2.3