aboutsummaryrefslogtreecommitdiff
path: root/src/peripherals/timer.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/peripherals/timer.spec.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/peripherals/timer.spec.ts b/src/peripherals/timer.spec.ts
index 472dfac..5a62246 100644
--- a/src/peripherals/timer.spec.ts
+++ b/src/peripherals/timer.spec.ts
@@ -214,7 +214,7 @@ describe('timer', () => {
'LDI r16, 0x30', // TCNT <- 0x30
'OUT 0x26, r16',
'NOP',
- 'IN r17, 0x26' // r17 <- TCNT
+ 'IN r17, 0x26', // r17 <- TCNT
];
loadProgram(...program);
const timer = new AVRTimer(cpu, timer0Config);