You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Certain components never require the fastest clock. The most obvious offenders are the timer interrupt and temportal.
What if we unroll the timer mechanism?
fntick8() void {
// 8 times per function callinlinefor ("12345678") |_| {
self.timer.tick();
self.cpu.tick();
self.video.tick();
self.audio.tick();
}
// 1 time per function callself.slow_timer.tick();
self.temportal.tick();
self.serial.tick();
}
The text was updated successfully, but these errors were encountered:
Followup to #61
Certain components never require the fastest clock. The most obvious offenders are the timer interrupt and temportal.
What if we unroll the timer mechanism?
The text was updated successfully, but these errors were encountered: