summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/ti99/datamux.h
diff options
context:
space:
mode:
author Michael Zapf <michael.zapf@mizapf.de>2013-06-09 13:22:00 +0000
committer Michael Zapf <michael.zapf@mizapf.de>2013-06-09 13:22:00 +0000
commit3e5766d0ffe07551d46ae6ee576fdf8c7a592520 (patch)
tree3626e60fe81a162a04b07cf1c6bae2279a081f52 /src/mess/machine/ti99/datamux.h
parent220da4e3d76cb3ab099980e900138a38ddeaacca (diff)
(MESS) ti99: Make debugger happier. Also, removed some unneeded
variables. (nw)
Diffstat (limited to 'src/mess/machine/ti99/datamux.h')
-rw-r--r--src/mess/machine/ti99/datamux.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mess/machine/ti99/datamux.h b/src/mess/machine/ti99/datamux.h
index ec8fac3250d..79f4f7c817f 100644
--- a/src/mess/machine/ti99/datamux.h
+++ b/src/mess/machine/ti99/datamux.h
@@ -81,6 +81,12 @@ protected:
virtual ioport_constructor device_input_ports() const;
private:
+ // Common read routine
+ void read_all(address_space& space, UINT16 addr, UINT8 *target);
+
+ // Common write routine
+ void write_all(address_space& space, UINT16 addr, UINT8 value);
+
// Ready line to the CPU
devcb_resolved_write_line m_ready;
@@ -101,9 +107,6 @@ private:
/* Reference to the CPU; avoid lookups. */
device_t *m_cpu;
-
- /* Reference to the address space, maybe unnecessary. */
- address_space *m_space;
};
/******************************************************************************/