summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/decioga.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/decioga.h')
-rw-r--r--src/mame/machine/decioga.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/mame/machine/decioga.h b/src/mame/machine/decioga.h
index 25ec5fe5e40..28e7ce53990 100644
--- a/src/mame/machine/decioga.h
+++ b/src/mame/machine/decioga.h
@@ -28,11 +28,6 @@ public:
// multiplex irq output
auto irq_out() { return m_irq_out_cb.bind(); }
- // DMA interface
- void set_dma_space(address_space *space);
- DECLARE_READ16_MEMBER(lance_dma_r);
- DECLARE_WRITE16_MEMBER(lance_dma_w);
-
protected:
virtual void device_start() override;
virtual void device_reset() override;
@@ -43,14 +38,9 @@ protected:
DECLARE_WRITE32_MEMBER(intr_w);
DECLARE_READ32_MEMBER(imsk_r);
DECLARE_WRITE32_MEMBER(imsk_w);
- DECLARE_READ32_MEMBER(dmaptr_r);
- DECLARE_WRITE32_MEMBER(dmaptr_w);
-
- address_space *m_maincpu_space;
private:
- u32 m_csr, m_intr, m_imsk;
- u32 m_dmaptrs[0x10];
+ uint32_t m_csr, m_intr, m_imsk;
devcb_write_line m_irq_out_cb;