diff options
Diffstat (limited to 'demo/src')
| -rw-r--r-- | demo/src/execute.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demo/src/execute.ts b/demo/src/execute.ts index f2c7d82..3a2f162 100644 --- a/demo/src/execute.ts +++ b/demo/src/execute.ts @@ -43,7 +43,7 @@ export class AVRRunner { avrInstruction(this.cpu); this.timer.tick(); this.usart.tick(); - if (this.cpu.cycles % 50000 === 0) { + if (this.cpu.cycles % 500000 === 0) { callback(this.cpu); await new Promise((resolve) => setTimeout(resolve, 0)); if (this.stopped) { |
