summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/terminal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/terminal.h')
-rw-r--r--src/devices/machine/terminal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/terminal.h b/src/devices/machine/terminal.h
index bf2f81c07f7..dab8bd40578 100644
--- a/src/devices/machine/terminal.h
+++ b/src/devices/machine/terminal.h
@@ -36,7 +36,7 @@ public:
}
void set_keyboard_callback(generic_keyboard_device::output_delegate callback) { m_keyboard_cb = callback; }
- DECLARE_WRITE8_MEMBER(write) { term_write(data); }
+ void write(u8 data) { term_write(data); }
void kbd_put(u8 data);