POWER: Add a stub implementation of initCPU.

This commit is contained in:
Gabe Black
2011-11-13 12:40:15 -08:00
parent 1a8f1809fa
commit ff4ba82610
2 changed files with 8 additions and 0 deletions

View File

@@ -68,5 +68,11 @@ skipFunction(ThreadContext *tc)
panic("Not Implemented for POWER");
}
void
initCPU(ThreadContext *tc, int cpuId)
{
panic("initCPU not implemented for POWER.\n");
}
} // namespace PowerISA

View File

@@ -92,6 +92,8 @@ getExecutingAsid(ThreadContext *tc)
return 0;
}
void initCPU(ThreadContext *, int cpuId);
} // namespace PowerISA