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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/imagedev/floppy.h b/src/devices/imagedev/floppy.h
index ce83d7b4839..d0832d45fd2 100644
--- a/src/devices/imagedev/floppy.h
+++ b/src/devices/imagedev/floppy.h
@@ -98,7 +98,7 @@ public:
std::vector<uint32_t> &get_buffer() { return image->get_buffer(cyl, ss, subcyl); }
int get_cyl() { return cyl; }
- void mon_w(int state);
+ virtual void mon_w(int state);
bool ready_r();
void set_ready(bool state);
double get_pos();
@@ -280,6 +280,7 @@ public:
virtual ~mac_floppy_device() = default;
virtual bool wpt_r() override;
+ virtual void mon_w(int) override;
virtual void seek_phase_w(int phases) override;
virtual const char *image_interface() const noexcept override { return "floppy_3_5"; }