diff options
author | 2015-06-04 21:42:58 +0200 | |
---|---|---|
committer | 2015-06-24 08:43:34 +0200 | |
commit | 88949a5b47798b3c82851c31b6f801e4fb8ca06f (patch) | |
tree | 7929d5f4beb47f8f6b61fe2a2b89f2302f3df19c /src/emu/cpu/tms7000/tms7000.c | |
parent | d1583b9850d9fb45470648a515eb734e05fd926f (diff) |
memory: Remove support for decrypted bases, use an address space instead [O. Galibert]
Diffstat (limited to 'src/emu/cpu/tms7000/tms7000.c')
-rw-r--r-- | src/emu/cpu/tms7000/tms7000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/tms7000/tms7000.c b/src/emu/cpu/tms7000/tms7000.c index acc81731c1b..99451e30d6b 100644 --- a/src/emu/cpu/tms7000/tms7000.c +++ b/src/emu/cpu/tms7000/tms7000.c @@ -631,7 +631,7 @@ void tms7000_device::execute_run() { debugger_instruction_hook(this, m_pc); - m_op = m_direct->read_decrypted_byte(m_pc++); + m_op = m_direct->read_byte(m_pc++); execute_one(m_op); } while (m_icount > 0); } |