summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/dp8390.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/dp8390.h')
-rw-r--r--src/devices/machine/dp8390.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/dp8390.h b/src/devices/machine/dp8390.h
index adaed69d529..64bc6436733 100644
--- a/src/devices/machine/dp8390.h
+++ b/src/devices/machine/dp8390.h
@@ -16,9 +16,10 @@ public:
auto mem_read_callback() { return m_mem_read_cb.bind(); }
auto mem_write_callback() { return m_mem_write_cb.bind(); }
- void dp8390_w(offs_t offset, uint16_t data);
- uint16_t dp8390_r(offs_t offset);
- DECLARE_WRITE_LINE_MEMBER( dp8390_cs );
+ void remote_write(uint16_t data);
+ void cs_write(offs_t offset, uint8_t data);
+ uint16_t remote_read();
+ uint8_t cs_read(offs_t offset);
DECLARE_WRITE_LINE_MEMBER( dp8390_reset );
void recv_cb(uint8_t *buf, int len) override;
@@ -52,7 +53,6 @@ private:
void recv(uint8_t *buf, int len);
int m_reset;
- bool m_cs;
int m_rdma_active;
struct {