diff options
author | 2018-08-24 09:26:15 +0200 | |
---|---|---|
committer | 2018-08-24 09:26:29 +0200 | |
commit | 5cb33a23c70a9748358303d66fedab79365cd16a (patch) | |
tree | 4ab74e70ecb2b236791cb21c2313c05539698348 /src/mame/drivers/apc.cpp | |
parent | 3204234f8d7edce4a3373be3895d6852f3480ff8 (diff) |
-nvram: Removed MCFG, nw
Diffstat (limited to 'src/mame/drivers/apc.cpp')
-rw-r--r-- | src/mame/drivers/apc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/apc.cpp b/src/mame/drivers/apc.cpp index 6bf4d40bb5e..b4fe4b567a7 100644 --- a/src/mame/drivers/apc.cpp +++ b/src/mame/drivers/apc.cpp @@ -970,7 +970,7 @@ MACHINE_CONFIG_START(apc_state::apc) m_dmac->out_dack_callback<2>().set(FUNC(apc_state::apc_dack2_w)); m_dmac->out_dack_callback<3>().set(FUNC(apc_state::apc_dack3_w)); - MCFG_NVRAM_ADD_1FILL(m_cmos) + NVRAM(config, m_cmos, nvram_device::DEFAULT_ALL_1); MCFG_UPD1990A_ADD(m_rtc, XTAL(32'768), NOOP, NOOP) MCFG_UPD765A_ADD(m_fdc, true, true) |