summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/msx_slot/fs4600.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/msx_slot/fs4600.cpp')
-rw-r--r--src/devices/bus/msx_slot/fs4600.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/bus/msx_slot/fs4600.cpp b/src/devices/bus/msx_slot/fs4600.cpp
index 3ec7efc74f7..dc975cdd4ba 100644
--- a/src/devices/bus/msx_slot/fs4600.cpp
+++ b/src/devices/bus/msx_slot/fs4600.cpp
@@ -27,9 +27,10 @@ msx_slot_fs4600_device::msx_slot_fs4600_device(const machine_config &mconfig, co
}
-MACHINE_CONFIG_START(msx_slot_fs4600_device::device_add_mconfig)
- MCFG_NVRAM_ADD_0FILL("nvram")
-MACHINE_CONFIG_END
+void msx_slot_fs4600_device::device_add_mconfig(machine_config &config)
+{
+ NVRAM(config, "nvram", nvram_device::DEFAULT_ALL_0);
+}
void msx_slot_fs4600_device::device_start()