aboutsummaryrefslogtreecommitdiff
path: root/src/peripherals/clock.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/peripherals/clock.ts')
-rw-r--r--src/peripherals/clock.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/peripherals/clock.ts b/src/peripherals/clock.ts
index d443843..bf49ac9 100644
--- a/src/peripherals/clock.ts
+++ b/src/peripherals/clock.ts
@@ -35,7 +35,7 @@ export class AVRClock {
constructor(
private cpu: CPU,
private baseFreqHz: u32,
- private config: AVRClockConfig = clockConfig
+ private config: AVRClockConfig = clockConfig,
) {
this.cpu.writeHooks[this.config.CLKPR] = (clkpr) => {
if ((!this.clockEnabledCycles || this.clockEnabledCycles < cpu.cycles) && clkpr === CLKPCE) {