summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/timex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/timex.h')
-rw-r--r--src/mame/includes/timex.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/timex.h b/src/mame/includes/timex.h
index f1a51eb7425..e07fc02cc79 100644
--- a/src/mame/includes/timex.h
+++ b/src/mame/includes/timex.h
@@ -49,11 +49,11 @@ public:
void tc2048(machine_config &config);
private:
- DECLARE_READ8_MEMBER(ts2068_port_f4_r);
- DECLARE_WRITE8_MEMBER(ts2068_port_f4_w);
- DECLARE_READ8_MEMBER(ts2068_port_ff_r);
- DECLARE_WRITE8_MEMBER(ts2068_port_ff_w);
- DECLARE_WRITE8_MEMBER(tc2048_port_ff_w);
+ uint8_t ts2068_port_f4_r();
+ void ts2068_port_f4_w(uint8_t data);
+ uint8_t ts2068_port_ff_r();
+ void ts2068_port_ff_w(offs_t offset, uint8_t data);
+ void tc2048_port_ff_w(offs_t offset, uint8_t data);
DECLARE_MACHINE_RESET(tc2048);
DECLARE_MACHINE_RESET(ts2068);