summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/appldriv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/appldriv.h')
-rw-r--r--src/devices/machine/appldriv.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/devices/machine/appldriv.h b/src/devices/machine/appldriv.h
index 3765705f625..1a396990167 100644
--- a/src/devices/machine/appldriv.h
+++ b/src/devices/machine/appldriv.h
@@ -28,7 +28,13 @@ class apple525_floppy_image_device : public legacy_floppy_image_device
{
public:
// construction/destruction
- apple525_floppy_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ apple525_floppy_image_device(const machine_config &mconfig, const char *tag, device_t *owner, const floppy_interface *config, int dividend, int divisor)
+ : apple525_floppy_image_device(mconfig, tag, owner, (uint32_t)0)
+ {
+ set_floppy_config(config);
+ set_params(dividend, divisor);
+ }
+ apple525_floppy_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
virtual image_init_result call_load() override;
virtual void call_unload() override;