summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/pdc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/pdc.h')
-rw-r--r--src/devices/machine/pdc.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/devices/machine/pdc.h b/src/devices/machine/pdc.h
index b3486897c3e..19733881774 100644
--- a/src/devices/machine/pdc.h
+++ b/src/devices/machine/pdc.h
@@ -62,6 +62,7 @@ public:
DECLARE_WRITE8_MEMBER(p38_w);
DECLARE_READ8_MEMBER(p38_r);
DECLARE_READ8_MEMBER(p39_r);
+ DECLARE_WRITE8_MEMBER(p50_53_w);
DECLARE_READ8_MEMBER(m68k_dma_r);
DECLARE_WRITE8_MEMBER(m68k_dma_w);
@@ -80,7 +81,8 @@ public:
UINT8 reg_p7;
UINT8 reg_p21;
UINT8 reg_p38;
- UINT32 fdd_68k_dma_address;
+ UINT32 fdd_68k_dma_r_address; /* m68k -> FDD DMA read address */
+ UINT32 fdd_68k_dma_w_address; /* FDD -> m68k DMA write address */
protected:
/* Device-level overrides */
virtual void device_start();
@@ -94,7 +96,8 @@ protected:
required_device<cpu_device> m_pdccpu;
required_device<am9517a_device> m_dma8237;
required_device<upd765a_device> m_fdc;
- required_device<floppy_connector> m_floppy;
+ //required_device<floppy_connector> m_floppy;
+ //required_device<floppy_image_device> m_floppy;
optional_device<hdc9224_device> m_hdc9224;
mfm_harddisk_device* m_harddisk;
required_shared_ptr<UINT8> m_pdc_ram;