From 4b59cf4a2eb3cd4babdf6eed14268e6a733faea7 Mon Sep 17 00:00:00 2001 From: Robbbert Date: Sat, 24 Jul 2021 23:04:09 +1000 Subject: tx0: added compatibility flags --- src/mame/drivers/tx0.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mame/drivers/tx0.cpp b/src/mame/drivers/tx0.cpp index d229dfbba7e..9a2446756e7 100644 --- a/src/mame/drivers/tx0.cpp +++ b/src/mame/drivers/tx0.cpp @@ -1585,7 +1585,7 @@ void tx0_state::tx0_64kw(machine_config &config) GFXDECODE(config, m_gfxdecode, m_palette, gfx_tx0); PALETTE(config, m_palette, FUNC(tx0_state::tx0_palette), total_colors_needed + sizeof(tx0_pens), total_colors_needed); - SOFTWARE_LIST(config, "ptp_list").set_original("tx0_ptp"); + SOFTWARE_LIST(config, "ptp_list").set_original("tx0_ptp").set_filter("64"); } void tx0_state::tx0_8kw(machine_config &config) @@ -1596,6 +1596,8 @@ void tx0_state::tx0_8kw(machine_config &config) /* TX0 CPU @ approx. 167 kHz (no master clock, but the memory cycle time is approximately 6usec) */ m_maincpu->set_addrmap(AS_PROGRAM, &tx0_state::tx0_8kw_map); + + SOFTWARE_LIST(config.replace(), "ptp_list").set_original("tx0_ptp").set_filter("8"); } ROM_START(tx0_64kw) -- cgit v1.2.3