aboutsummaryrefslogtreecommitdiff
path: root/demo
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--demo/src/execute.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/demo/src/execute.ts b/demo/src/execute.ts
index 3a065d1..5d5c6b4 100644
--- a/demo/src/execute.ts
+++ b/demo/src/execute.ts
@@ -50,10 +50,6 @@ export class AVRRunner {
const cyclesToRun = this.cpu.cycles + this.workUnitCycles;
while (this.cpu.cycles < cyclesToRun) {
avrInstruction(this.cpu);
- this.timer0.tick();
- this.timer1.tick();
- this.timer2.tick();
- this.usart.tick();
this.cpu.tick();
}