summaryrefslogtreecommitdiff
path: root/sim/mips/m16run.c
diff options
context:
space:
mode:
Diffstat (limited to 'sim/mips/m16run.c')
-rw-r--r--sim/mips/m16run.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/mips/m16run.c b/sim/mips/m16run.c
index 0f5fec11ac6..44fb9e4538c 100644
--- a/sim/mips/m16run.c
+++ b/sim/mips/m16run.c
@@ -33,7 +33,7 @@ sim_engine_run (SIM_DESC sd,
int siggnal) /* ignore */
{
sim_cpu *cpu = STATE_CPU (sd, next_cpu_nr);
- address_word cia = CIA_GET (cpu);
+ address_word cia = CPU_PC_GET (cpu);
while (1)
{
@@ -64,9 +64,9 @@ sim_engine_run (SIM_DESC sd,
/* process any events */
if (sim_events_tick (sd))
{
- CIA_SET (CPU, cia);
+ CPU_PC_SET (CPU, cia);
sim_events_process (sd);
- cia = CIA_GET (CPU);
+ cia = CPU_PC_GET (CPU);
}
}