summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/tms32010/tms32010.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/tms32010/tms32010.c')
-rw-r--r--src/emu/cpu/tms32010/tms32010.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/tms32010/tms32010.c b/src/emu/cpu/tms32010/tms32010.c
index a90a697f58b..e6264d3f1dd 100644
--- a/src/emu/cpu/tms32010/tms32010.c
+++ b/src/emu/cpu/tms32010/tms32010.c
@@ -219,7 +219,7 @@ offs_t tms32010_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8
* used to greatly speed up emulation
*/
-#define TMS32010_RDOP(A) (m_direct->read_decrypted_word((A)<<1))
+#define TMS32010_RDOP(A) (m_direct->read_word((A)<<1))
/****************************************************************************
@@ -228,7 +228,7 @@ offs_t tms32010_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8
* that use different encoding mechanisms for opcodes and opcode arguments
*/
-#define TMS32010_RDOP_ARG(A) (m_direct->read_raw_word((A)<<1))
+#define TMS32010_RDOP_ARG(A) (m_direct->read_word((A)<<1))
/************************************************************************