INLINE UINT8 ARG(scmp_state *cpustate) { UINT16 pc = cpustate->PC.w.l; cpustate->PC.w.l = ADD12(cpustate->PC.w.l,1); return cpustate->direct->read_raw_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_byte(pc); }
INLINE UINT8 ROP(scmp_state *cpustate) { UINT16 pc = cpustate->PC.w.l; cpustate->PC.w.l = ADD12(cpustate->PC.w.l,1); return cpustate->direct->read_decrypted_byte( pc); }