summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2012-09-07 17:31:46 +0000
committer smf- <smf-@users.noreply.github.com>2012-09-07 17:31:46 +0000
commit569db33a9169ef6712d9297c1d28bd195cf5fdae (patch)
treedbb390b730409b749974911f2d8c9647a226bc41
parentd986739eb3b72fdfb89edb3b3420206226866756 (diff)
add harddrive in machine config fragment as the one in the base class isn't created, this will get less messy once the z80 code is used instead of hle'ing it. (nw)
-rw-r--r--src/mess/machine/s1410.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mess/machine/s1410.c b/src/mess/machine/s1410.c
index f52b6c8bae2..3959cd7a2e0 100644
--- a/src/mess/machine/s1410.c
+++ b/src/mess/machine/s1410.c
@@ -88,6 +88,7 @@ Notes:
#include "s1410.h"
#include "cpu/z80/z80.h"
#include "machine/devhelpr.h"
+#include "imagedev/harddriv.h"
@@ -180,6 +181,8 @@ static MACHINE_CONFIG_FRAGMENT( s1410 )
MCFG_CPU_PROGRAM_MAP(s1410_mem)
MCFG_CPU_IO_MAP(s1410_io)
MCFG_DEVICE_DISABLE()
+
+ MCFG_HARDDISK_ADD("image")
MACHINE_CONFIG_END