Esempio n. 1
0
void ARM_DynCom::Run() {
    ExecuteInstructions(std::max(CoreTiming::GetDowncount(), 0));
}
Esempio n. 2
0
void ARM_DynCom::Step() {
    ExecuteInstructions(1);
}
Esempio n. 3
0
void ARM_DynCom::Run() {
    DEBUG_ASSERT(system != nullptr);
    ExecuteInstructions(std::max<s64>(system->CoreTiming().GetDowncount(), 0));
}