summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev/floppy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/imagedev/floppy.h')
-rw-r--r--src/devices/imagedev/floppy.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/devices/imagedev/floppy.h b/src/devices/imagedev/floppy.h
index 5d00a51c2ea..04b7fe722f0 100644
--- a/src/devices/imagedev/floppy.h
+++ b/src/devices/imagedev/floppy.h
@@ -38,11 +38,6 @@
#define MCFG_FLOPPY_DRIVE_SOUND(_doit) \
static_cast<floppy_connector *>(device)->enable_sound(_doit);
-// Add a spinup delay. This should better become a property of a selected drive.
-// Default is 0
-#define MCFG_FLOPPY_DRIVE_SPINUP_TIME(_time) \
- static_cast<floppy_connector *>(device)->set_spinup_time(_time);
-
#define DECLARE_FLOPPY_FORMATS(_name) \
static const floppy_format_type _name []
@@ -154,7 +149,6 @@ public:
// Enable sound
void enable_sound(bool doit) { m_make_sound = doit; }
- void set_spinup_time(int ms) { m_spinup_time = ms; }
protected:
floppy_image_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
@@ -176,7 +170,6 @@ protected:
char extension_list[256];
floppy_image_format_t *fif_list;
emu_timer *index_timer;
- emu_timer *spinup_timer;
/* Physical characteristics, filled by setup_characteristics */
int tracks; /* addressable tracks */
@@ -231,10 +224,6 @@ protected:
// Sound
bool m_make_sound;
floppy_sound_device* m_sound_out;
-
- // Spinup
- bool m_spun_up;
- int m_spinup_time;
};
#define DECLARE_FLOPPY_IMAGE_DEVICE(Type, Name, Interface) \
@@ -333,7 +322,6 @@ public:
void set_formats(const floppy_format_type *formats);
floppy_image_device *get_device();
void enable_sound(bool doit) { m_enable_sound = doit; }
- void set_spinup_time(int ms) { m_spinup_time = ms; }
protected:
virtual void device_start() override;
@@ -342,7 +330,6 @@ protected:
private:
const floppy_format_type *formats;
bool m_enable_sound;
- int m_spinup_time;
};