Added a stub initCPU function. This would be a good place to force in a PowerOnReset fault to kick start the CPU.

--HG--
extra : convert_revision : 79e1fa2ef40e326682069639e260db255fd29d93
This commit is contained in:
Gabe Black 2006-11-03 11:04:10 -05:00
parent 6b701a6d25
commit 3f4b098985

View file

@ -99,6 +99,12 @@ namespace SparcISA
template <class TC>
void zeroRegisters(TC *tc);
void initCPU(ThreadContext *tc, int cpuId)
{
//This would be a good place to stick a PowerOnReset fault into the
//cpu.
}
} // namespace SparcISA
#endif