summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/i8251.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/i8251.h')
-rw-r--r--src/devices/machine/i8251.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/devices/machine/i8251.h b/src/devices/machine/i8251.h
index 82659caed11..cf966ac2693 100644
--- a/src/devices/machine/i8251.h
+++ b/src/devices/machine/i8251.h
@@ -57,8 +57,6 @@ public:
DECLARE_WRITE8_MEMBER(data_w);
DECLARE_READ8_MEMBER(status_r);
DECLARE_WRITE8_MEMBER(control_w);
- DECLARE_WRITE8_MEMBER(command_w);
- DECLARE_WRITE8_MEMBER(mode_w);
DECLARE_WRITE_LINE_MEMBER( write_rxd );
DECLARE_WRITE_LINE_MEMBER( write_cts );
@@ -96,6 +94,9 @@ protected:
virtual void device_reset() override;
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
+ void command_w(uint8_t data);
+ void mode_w(uint8_t data);
+
void update_rx_ready();
void update_tx_ready();
void update_tx_empty();
@@ -156,6 +157,9 @@ class v53_scu_device : public i8251_device
public:
// construction/destruction
v53_scu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+
+ DECLARE_WRITE8_MEMBER(command_w);
+ DECLARE_WRITE8_MEMBER(mode_w);
};