summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/scmp/scmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/scmp/scmp.c')
-rw-r--r--src/emu/cpu/scmp/scmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/scmp/scmp.c b/src/emu/cpu/scmp/scmp.c
index cbfaf6a82c2..edd8502c1c5 100644
--- a/src/emu/cpu/scmp/scmp.c
+++ b/src/emu/cpu/scmp/scmp.c
@@ -69,14 +69,14 @@ UINT8 scmp_device::ROP()
{
UINT16 pc = m_PC.w.l;
m_PC.w.l = ADD12(m_PC.w.l,1);
- return m_direct->read_decrypted_byte( pc);
+ return m_direct->read_byte( pc);
}
UINT8 scmp_device::ARG()
{
UINT16 pc = m_PC.w.l;
m_PC.w.l = ADD12(m_PC.w.l,1);
- return m_direct->read_raw_byte(pc);
+ return m_direct->read_byte(pc);
}
UINT8 scmp_device::RM(UINT32 a)