summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/newbrain
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2018-02-14 19:11:44 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2018-02-14 19:11:44 +0100
commit80c9f0496fd38a1ff2afba40ee4a4e7d200ac3a0 (patch)
tree1094735d3e22bab0c39b0cab5db685d5c57d340a /src/devices/bus/newbrain
parentbb468cf238e867abd40579ae63f878d4bded9791 (diff)
devices/bus: made some methods private now that it's possible (nw)
Diffstat (limited to 'src/devices/bus/newbrain')
-rw-r--r--src/devices/bus/newbrain/fdc.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/devices/bus/newbrain/fdc.h b/src/devices/bus/newbrain/fdc.h
index 4b69d607532..79140df472d 100644
--- a/src/devices/bus/newbrain/fdc.h
+++ b/src/devices/bus/newbrain/fdc.h
@@ -29,12 +29,6 @@ public:
// construction/destruction
newbrain_fdc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_WRITE8_MEMBER( fdc_auxiliary_w );
- DECLARE_READ8_MEMBER( fdc_control_r );
- DECLARE_WRITE8_MEMBER( io_dec_w );
-
- void newbrain_fdc_io(address_map &map);
- void newbrain_fdc_mem(address_map &map);
protected:
// device-level overrides
virtual void device_start() override;
@@ -53,6 +47,13 @@ protected:
private:
DECLARE_WRITE_LINE_MEMBER( fdc_int_w );
+ DECLARE_WRITE8_MEMBER( fdc_auxiliary_w );
+ DECLARE_READ8_MEMBER( fdc_control_r );
+ DECLARE_WRITE8_MEMBER( io_dec_w );
+
+ void newbrain_fdc_io(address_map &map);
+ void newbrain_fdc_mem(address_map &map);
+
required_device<z80_device> m_maincpu;
required_device<upd765a_device> m_fdc;
required_device<floppy_connector> m_floppy0;