summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy/cpu.c')
-rw-r--r--apps/plugins/rockboy/cpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/rockboy/cpu.c b/apps/plugins/rockboy/cpu.c
index 5c4abc519f..a09beafab6 100644
--- a/apps/plugins/rockboy/cpu.c
+++ b/apps/plugins/rockboy/cpu.c
@@ -1006,9 +1006,9 @@ next:
1006 1006
1007#ifndef ASM_CPU_STEP 1007#ifndef ASM_CPU_STEP
1008 1008
1009int cpu_step(int max) 1009inline int cpu_step(int max)
1010{ 1010{
1011 int cnt; 1011 register int cnt;
1012 if ((cnt = cpu_idle(max))) return cnt; 1012 if ((cnt = cpu_idle(max))) return cnt;
1013 return cpu_emulate(1); 1013 return cpu_emulate(1);
1014} 1014}