summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/m68000
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-11-24 02:40:16 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-11-24 02:40:16 +0000
commit513011179dadbaf95bd72a113dc1cb9a9f8afe4b (patch)
treeec9c992e3715c7e4bc90a6892fc88169fa2c535d /src/emu/cpu/m68000
parent64164a3e97154682d3ebdd5ffdf4cd8b22a1a6b2 (diff)
change_pc? What change_pc?
Diffstat (limited to 'src/emu/cpu/m68000')
-rw-r--r--src/emu/cpu/m68000/m68kcpu.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/emu/cpu/m68000/m68kcpu.h b/src/emu/cpu/m68000/m68kcpu.h
index 9426e09947e..b58894a3175 100644
--- a/src/emu/cpu/m68000/m68kcpu.h
+++ b/src/emu/cpu/m68000/m68kcpu.h
@@ -1137,14 +1137,12 @@ INLINE void m68ki_fake_pull_32(m68ki_cpu_core *m68k)
INLINE void m68ki_jump(m68ki_cpu_core *m68k, UINT32 new_pc)
{
REG_PC = new_pc;
- change_pc(REG_PC);
}
INLINE void m68ki_jump_vector(m68ki_cpu_core *m68k, UINT32 vector)
{
REG_PC = (vector<<2) + m68k->vbr;
REG_PC = m68ki_read_data_32(m68k, REG_PC);
- change_pc(REG_PC);
}
@@ -1166,7 +1164,6 @@ INLINE void m68ki_branch_16(m68ki_cpu_core *m68k, UINT32 offset)
INLINE void m68ki_branch_32(m68ki_cpu_core *m68k, UINT32 offset)
{
REG_PC += offset;
- change_pc(REG_PC);
}