diff options
Diffstat (limited to 'src/devices/machine/pci-ide.h')
-rw-r--r-- | src/devices/machine/pci-ide.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/pci-ide.h b/src/devices/machine/pci-ide.h index aae418fb9e0..af3d7ae0a4d 100644 --- a/src/devices/machine/pci-ide.h +++ b/src/devices/machine/pci-ide.h @@ -33,10 +33,10 @@ public: auto irq_handler() { return m_irq_handler.bind(); } // This will set the top 12 bits for address decoding in legacy mode. Needed for seattle driver. - void set_legacy_top(int val) { m_legacy_top = val & 0xfff; }; + void set_legacy_top(int val) { m_legacy_top = val & 0xfff; } // Sets the default Programming Interface (PIF) register - void set_pif(int val) { m_pif = val & 0xff; }; + void set_pif(int val) { m_pif = val & 0xff; } protected: virtual void device_start() override; |