summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/n64.c
diff options
context:
space:
mode:
author etabeta78 <etabeta78@users.noreply.github.com>2015-03-25 17:49:44 +0100
committer etabeta78 <etabeta78@users.noreply.github.com>2015-03-25 17:49:44 +0100
commit0eda7abf2098d30711622b924f03bef44b9681a1 (patch)
tree1122e6ff92fa415b342053a493c20c0d2cba2141 /src/mess/drivers/n64.c
parentf5ab78727a35e96374292a6e1fdf62b94ac7ee8e (diff)
(MESS) added software list for 64DD disks. nw.
Diffstat (limited to 'src/mess/drivers/n64.c')
-rw-r--r--src/mess/drivers/n64.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mess/drivers/n64.c b/src/mess/drivers/n64.c
index fd0f65cb425..2c05e376674 100644
--- a/src/mess/drivers/n64.c
+++ b/src/mess/drivers/n64.c
@@ -339,7 +339,7 @@ static MACHINE_CONFIG_START( n64, n64_mess_state )
MCFG_GENERIC_LOAD(n64_mess_state, n64_cart)
/* software lists */
- MCFG_SOFTWARE_LIST_ADD("cart_list","n64")
+ MCFG_SOFTWARE_LIST_ADD("cart_list", "n64")
MACHINE_CONFIG_END
static MACHINE_CONFIG_DERIVED( n64dd, n64 )
@@ -354,6 +354,9 @@ static MACHINE_CONFIG_DERIVED( n64dd, n64 )
MCFG_GENERIC_LOAD(n64_mess_state, n64_cart)
MCFG_QUICKLOAD_ADD("quickload", n64_mess_state, n64dd, "bin,dsk", 0)
+ MCFG_QUICKLOAD_INTERFACE("n64dd_disk")
+
+ MCFG_SOFTWARE_LIST_ADD("dd_list", "n64dd")
MACHINE_CONFIG_END
ROM_START( n64 )