diff options
Diffstat (limited to 'apps/plugins/rockboy/cpu.c')
| -rw-r--r-- | apps/plugins/rockboy/cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/rockboy/cpu.c b/apps/plugins/rockboy/cpu.c index 5c4abc5..a09beaf 100644 --- a/apps/plugins/rockboy/cpu.c +++ b/apps/plugins/rockboy/cpu.c @@ -1006,9 +1006,9 @@ next: #ifndef ASM_CPU_STEP -int cpu_step(int max) +inline int cpu_step(int max) { - int cnt; + register int cnt; if ((cnt = cpu_idle(max))) return cnt; return cpu_emulate(1); } |