summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/ti99/datamux.h
diff options
context:
space:
mode:
author Michael Zapf <michael.zapf@mizapf.de>2013-10-13 15:24:24 +0000
committer Michael Zapf <michael.zapf@mizapf.de>2013-10-13 15:24:24 +0000
commitf2c3f5e7e57edc3e98e666281a36da9ef751eca4 (patch)
tree884c6f789e3c2797d92b99d3abb505ea9250aa61 /src/mess/machine/ti99/datamux.h
parent0611e7504e0add4db6c49e30d04b3274cfecb0d4 (diff)
(MESS) Added guards to prevent access to special devices in new memory
access emulation. [Michael Zapf]
Diffstat (limited to 'src/mess/machine/ti99/datamux.h')
-rw-r--r--src/mess/machine/ti99/datamux.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mess/machine/ti99/datamux.h b/src/mess/machine/ti99/datamux.h
index 0b9c9c85a27..26fbbb4a693 100644
--- a/src/mess/machine/ti99/datamux.h
+++ b/src/mess/machine/ti99/datamux.h
@@ -95,6 +95,10 @@ private:
// Common set address method
void setaddress_all(address_space& space, UINT16 addr);
+ // Debugger access
+ UINT16 debugger_read(address_space& space, UINT16 addr);
+ void debugger_write(address_space& space, UINT16 addr, UINT16 data);
+
// Ready line to the CPU
devcb_resolved_write_line m_ready;