summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp_hil/hp_hil.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hp_hil/hp_hil.h')
-rw-r--r--src/devices/bus/hp_hil/hp_hil.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/hp_hil/hp_hil.h b/src/devices/bus/hp_hil/hp_hil.h
index d8d9f90e536..b4302ac1895 100644
--- a/src/devices/bus/hp_hil/hp_hil.h
+++ b/src/devices/bus/hp_hil/hp_hil.h
@@ -59,7 +59,7 @@
#define HPHIL_DHR 0xFE // Device Hard Reset
/*
- * init sequnce (p. 4-13)
+ * init sequence (p. 4-13)
*
* DHR
* IFC
@@ -125,9 +125,9 @@ public:
void add_hp_hil_device(device_hp_hil_interface *device);
bool get_int(void) { return m_r3 & 1; }
- DECLARE_READ8_MEMBER(read);
- DECLARE_WRITE8_MEMBER(write);
- DECLARE_WRITE_LINE_MEMBER(ap_w);
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
+ void ap_w(int state);
void hil_write(uint16_t data);
@@ -168,8 +168,8 @@ public:
// inline configuration
void set_hp_hil_mlc(hp_hil_mlc_device &mlc_device) { m_hp_hil_mlc = &mlc_device; }
- virtual bool hil_write(uint16_t *data) { return true; };
- int device_id() { return m_device_id; };
+ virtual bool hil_write(uint16_t *data) { return true; }
+ int device_id() { return m_device_id; }
protected:
device_hp_hil_interface(const machine_config &mconfig, device_t &device);