From 8f3b0157b6e688280d6efca902acaf145eee0636 Mon Sep 17 00:00:00 2001 From: Robbbert Date: Sun, 13 Feb 2022 12:27:14 +1100 Subject: [PATCH] whitestar: fixed nvram issue. --- src/mame/drivers/whitestar.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mame/drivers/whitestar.cpp b/src/mame/drivers/whitestar.cpp index 5f066cf1f61..3c5d576b5ad 100644 --- a/src/mame/drivers/whitestar.cpp +++ b/src/mame/drivers/whitestar.cpp @@ -61,7 +61,6 @@ Status: - Volume is quite low. On some machines it can be boosted by hitting NUM2 to get the volume menu, then hold NUM1 to max. ToDo: -- NVRAM (it's there but doesn't save anything) - ATMEL ARM soundcard - Mechanical sounds - Outputs @@ -313,6 +312,8 @@ void whitestar_state::whitestar(machine_config &config) m_maincpu->set_addrmap(AS_PROGRAM, &whitestar_state::whitestar_map); m_maincpu->set_periodic_int(FUNC(whitestar_state::whitestar_firq_interrupt), attotime::from_hz(976)); // value taken from PinMAME + NVRAM(config, "nvram", nvram_device::DEFAULT_ALL_0); + /* sound hardware */ genpin_audio(config);