From aabcf1810ff8ea98fb3834d542ca1f02b6135e3a Mon Sep 17 00:00:00 2001 From: hap Date: Sat, 17 Apr 2021 12:54:41 +0200 Subject: [PATCH] nb1412m2: make clock input same for all drivers --- src/mame/drivers/dai3wksi.cpp | 2 ++ src/mame/drivers/galivan.cpp | 2 +- src/mame/drivers/terracre.cpp | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/dai3wksi.cpp b/src/mame/drivers/dai3wksi.cpp index ba7a5468f8f..dcd16e23447 100644 --- a/src/mame/drivers/dai3wksi.cpp +++ b/src/mame/drivers/dai3wksi.cpp @@ -32,6 +32,8 @@ Bellybuttons by Osso & hap 04/16/2021 TODO: +- Get rid of those big lookup tables, I see no proms on the PCB so it's a color overlay? + Note: warp1 colors more or less match the ones of dai3wksi according to flyers - Two player games are automatically displayed in cocktail mode. Is this by design (a cocktail only romset)? - Discrete audio needs adding to replace hardcoded samples diff --git a/src/mame/drivers/galivan.cpp b/src/mame/drivers/galivan.cpp index 0e5dcb70bcf..14939b33e1a 100644 --- a/src/mame/drivers/galivan.cpp +++ b/src/mame/drivers/galivan.cpp @@ -481,7 +481,7 @@ void dangarj_state::dangarj(machine_config &config) galivan(config); m_maincpu->set_addrmap(AS_IO, &dangarj_state::dangarj_io_map); - NB1412M2(config, m_prot, XTAL(8'000'000)); // divided by 2 maybe + NB1412M2(config, m_prot, XTAL(8'000'000)/2); // divided by 2 maybe } void galivan_state::ninjemak(machine_config &config) diff --git a/src/mame/drivers/terracre.cpp b/src/mame/drivers/terracre.cpp index 8310c13f78e..cbf40df3279 100644 --- a/src/mame/drivers/terracre.cpp +++ b/src/mame/drivers/terracre.cpp @@ -513,7 +513,7 @@ void amazon_state::amazon_1412m2(machine_config &config) amazon_base(config); m_maincpu->set_addrmap(AS_PROGRAM, &amazon_state::amazon_1412m2_map); - NB1412M2(config, m_prot, XTAL(16'000'000)); // divided by 4 maybe + NB1412M2(config, m_prot, XTAL(16'000'000)/4); // divided by 4 maybe }