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.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/devices/machine/dp8390.h b/src/devices/machine/dp8390.h
index 64bc6436733..0f484c5e45f 100644
--- a/src/devices/machine/dp8390.h
+++ b/src/devices/machine/dp8390.h
@@ -5,6 +5,8 @@
#pragma once
+#include "dinetwork.h"
+
// device stuff
@@ -20,7 +22,7 @@ public:
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 dp8390_reset(int state);
void recv_cb(uint8_t *buf, int len) override;
protected:
@@ -30,7 +32,7 @@ protected:
};
// construction/destruction
- dp8390_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, TYPE varian, float bandwidth);
+ dp8390_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, TYPE varian, u32 bandwidth);
// device-level overrides
virtual void device_start() override;