From 4765e92ec366a315d4afec5fb8aa23fa596c8af0 Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 16 Nov 2019 23:43:50 -0500 Subject: Fix some region widths at least for now, since no H8/500 core currently exists (nw) --- src/mame/drivers/picno.cpp | 4 ++-- src/mame/drivers/tg100.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mame/drivers/picno.cpp b/src/mame/drivers/picno.cpp index 8a00432e0d7..b789a83eceb 100644 --- a/src/mame/drivers/picno.cpp +++ b/src/mame/drivers/picno.cpp @@ -83,13 +83,13 @@ void picno_state::picno(machine_config &config) } ROM_START( picno ) - ROM_REGION(0x88000, "roms", 0) + ROM_REGION16_BE(0x88000, "roms", 0) ROM_LOAD( "hd6435328f10.u5", 0x00000, 0x08000, NO_DUMP ) // internal rom ROM_LOAD( "rx001-z8-v3j.u2", 0x08000, 0x80000, CRC(e3c8929d) SHA1(1716f09b0a594b3782d257330282d77b6ca6fa0d) ) //HN62334BP ROM_END ROM_START( picno2 ) - ROM_REGION(0x88000, "roms", 0) + ROM_REGION16_BE(0x88000, "roms", 0) ROM_LOAD( "hd6435328f10.u5", 0x00000, 0x08000, NO_DUMP ) // internal rom ROM_LOAD( "rx001-z8-v4j.u2", 0x08000, 0x80000, CRC(ae89a9a5) SHA1(51ed458ffd151e19019beb23517263efce4be272) ) //HN62334BP ROM_END diff --git a/src/mame/drivers/tg100.cpp b/src/mame/drivers/tg100.cpp index e75d6512851..031c877e635 100644 --- a/src/mame/drivers/tg100.cpp +++ b/src/mame/drivers/tg100.cpp @@ -91,7 +91,7 @@ void tg100_state::tg100(machine_config &config) ROM_START( tg100 ) - ROM_REGION(0x20000, "prgrom", 0) // H8/520 memory bus is 8 bit actually + ROM_REGION16_BE(0x20000, "prgrom", 0) // H8/520 memory bus is 8 bit actually ROM_LOAD16_WORD_SWAP( "xk731c0.ic4", 0x00000, 0x20000, CRC(8fb6139c) SHA1(483103a2ffc63a90a2086c597baa2b2745c3a1c2) ) ROM_REGION(0x200000, "ymw258", 0) -- cgit v1.2.3