summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/wd1000.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/wd1000.h')
-rw-r--r--src/devices/machine/wd1000.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/devices/machine/wd1000.h b/src/devices/machine/wd1000.h
index e7386ee543b..ac2219e8425 100644
--- a/src/devices/machine/wd1000.h
+++ b/src/devices/machine/wd1000.h
@@ -33,11 +33,12 @@ public:
void data_w(uint8_t val);
void set_sector_base(uint32_t base);
- DECLARE_READ8_MEMBER(read);
- DECLARE_WRITE8_MEMBER(write);
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
- DECLARE_READ_LINE_MEMBER(intrq_r);
- DECLARE_READ_LINE_MEMBER(drq_r);
+ // declared but not defined?
+ int intrq_r();
+ int drq_r();
protected: