summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/n64.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-01-07 22:20:14 +0100
committer Olivier Galibert <galibert@pobox.com>2018-01-17 16:11:18 +0100
commitd469cc04bcace0f601802301caeddc5b473b75f2 (patch)
treea9d71540c9c69cee5ab3a533476b81833fa02f5f /src/mame/drivers/n64.cpp
parent9f383f76ce6f00cc3320e5ba53dc323781e0077b (diff)
API Change: Machine configs are now a method of the owner class, and the prototype is simplified [O. Galibert]
Beware, the device context does not follow in MCFG_FRAGMENT_ADD anymore due to the prototype change. So creating a device then configuring through a fragment doesn't work as-is. The simplest solution is just to add a MCFG_DEVICE_MODIFY at the start of the fragment with the correct tag.
Diffstat (limited to 'src/mame/drivers/n64.cpp')
-rw-r--r--src/mame/drivers/n64.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/n64.cpp b/src/mame/drivers/n64.cpp
index d2786cbb92e..4f95800e6d7 100644
--- a/src/mame/drivers/n64.cpp
+++ b/src/mame/drivers/n64.cpp
@@ -38,6 +38,8 @@ public:
void disk_unload(device_image_interface &image);
DECLARE_DEVICE_IMAGE_LOAD_MEMBER( n64dd );
DECLARE_DEVICE_IMAGE_UNLOAD_MEMBER( n64dd );
+ void n64(machine_config &config);
+ void n64dd(machine_config &config);
};
READ32_MEMBER(n64_mess_state::dd_null_r)
@@ -418,7 +420,7 @@ INTERRUPT_GEN_MEMBER(n64_mess_state::n64_reset_poll)
periphs->poll_reset_button((ioport("RESET")->read() & 1) ? true : false);
}
-static MACHINE_CONFIG_START( n64 )
+MACHINE_CONFIG_START(n64_mess_state::n64)
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", VR4300BE, 93750000)
@@ -473,7 +475,7 @@ static MACHINE_CONFIG_START( n64 )
MCFG_SOFTWARE_LIST_ADD("cart_list", "n64")
MACHINE_CONFIG_END
-static MACHINE_CONFIG_DERIVED( n64dd, n64 )
+MACHINE_CONFIG_DERIVED(n64_mess_state::n64dd, n64)
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_PROGRAM_MAP(n64dd_map)