aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorUri Shaked2020-07-16 19:09:00 +0300
committerUri Shaked2020-07-16 19:09:00 +0300
commit32c0290b137d9ed77eff5d8023e5878534401ba3 (patch)
tree76000636423ed23864fa28276fdda3d47960bdb4 /src
parentchore(deps): npm upgrade (diff)
downloadavr8js-32c0290b137d9ed77eff5d8023e5878534401ba3.tar.gz
avr8js-32c0290b137d9ed77eff5d8023e5878534401ba3.tar.bz2
avr8js-32c0290b137d9ed77eff5d8023e5878534401ba3.zip
test(timer): remove stray console.log
Diffstat (limited to '')
-rw-r--r--src/peripherals/timer.spec.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/peripherals/timer.spec.ts b/src/peripherals/timer.spec.ts
index 721b01d..8e1949d 100644
--- a/src/peripherals/timer.spec.ts
+++ b/src/peripherals/timer.spec.ts
@@ -454,7 +454,6 @@ describe('timer', () => {
timer.tick();
cpu.writeData(TCCR1A, 0x3); // TCCR1A <- WGM10 | WGM11 (Fast PWM, 10-bit)
cpu.writeData(TCCR1B, 0x9); // TCCR1B <- WGM12 | CS10
- console.log(timer.CS);
cpu.data[0x6f] = 0x1; // TIMSK1: TOIE1
cpu.data[SREG] = 0x80; // SREG: I-------
cpu.cycles = 1;