summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2019-02-03 19:49:33 +0100
committer MooglyGuy <therealmogminer@gmail.com>2019-02-03 19:49:55 +0100
commit878e535eac4ffd64a3e9e6fd1824c60723fff283 (patch)
treece306c49b78a49ec5e1d7098607d984e805416cb /src/devices/imagedev
parent44f375b47d7f750ff5eb8f249eeb066291796738 (diff)
-devices/bus/bbc/1mhzbus/ieee488: Removed MACHINE_CONFIG macros, nw
-devices/bus/cbmiec/interpod: Removed MACHINE_CONFIG macros, nw -devices/bus/ieee488/ieee488: Removed MCFG macros, nw -devices/bus/ieee488/softbox: Removed MACHINE_CONFIG macros, nw -devices/bus/imi7000/imi7000: Removed MCFG macro, nw -devices/imagedev/harddriv: Added constructor for setting interface tag, nw -gridcomp, hp_ipc, hp64k, sage2, softbox: Removed MACHINE_CONFIG macros, nw
Diffstat (limited to 'src/devices/imagedev')
-rw-r--r--src/devices/imagedev/harddriv.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/devices/imagedev/harddriv.h b/src/devices/imagedev/harddriv.h
index 92a6b733275..7b71d13d2c7 100644
--- a/src/devices/imagedev/harddriv.h
+++ b/src/devices/imagedev/harddriv.h
@@ -25,6 +25,11 @@ class harddisk_image_device : public device_t,
{
public:
// construction/destruction
+ harddisk_image_device(const machine_config &mconfig, const char *tag, device_t *owner, const char *intf)
+ : harddisk_image_device(mconfig, tag, owner, (uint32_t)0)
+ {
+ set_interface(intf);
+ }
harddisk_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
virtual ~harddisk_image_device();